Added some new test cases

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-04-23 21:26:15 +00:00
parent 5dc5e70e20
commit ffac66d530
2 changed files with 12 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ check the source for this sample to see how to implement them.
menu6 = wxMenu()
menu6.Append(601, "Submenu Item")
menu5.AppendMenu(504, "submenu", menu6)
menu5.Append(505, "remove this menu")
menuBar.Append(menu5, "&Fun")
self.SetMenuBar(menuBar)
@@ -102,6 +103,7 @@ check the source for this sample to see how to implement them.
EVT_MENU(self, 501, self.Menu501)
EVT_MENU(self, 502, self.Menu502)
EVT_MENU(self, 503, self.TestRemove)
EVT_MENU(self, 505, self.TestRemove2)
# Methods
@@ -165,6 +167,11 @@ check the source for this sample to see how to implement them.
#menu.RemoveItem(submenuItem) # doesn't work, as expected since submenuItem is not on menu
def TestRemove2(self, evt):
mb = self.GetMenuBar()
mb.Remove(4)
#-------------------------------------------------------------------
def runTest(frame, nb, log):