Added menu sample, and some other minor changes to the demo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16005 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-07-02 17:08:55 +00:00
parent 5f4403b407
commit 3115ef3e56
5 changed files with 191 additions and 28 deletions

View File

@@ -228,7 +228,10 @@ class TestListCtrlPanel(wxPanel, wxColumnSorterMixin):
self.log.WriteText("OnColClick: %d\n" % event.GetColumn())
def OnColRightClick(self, event):
self.log.WriteText("OnColRightClick: %d\n" % event.GetColumn())
item = self.list.GetColumn(event.GetColumn())
self.log.WriteText("OnColRightClick: %d %s\n" %
(event.GetColumn(), (item.GetText(), item.GetAlign(),
item.GetWidth(), item.GetImage())))
def OnColBeginDrag(self, event):
self.log.WriteText("OnColBeginDrag\n")
@@ -311,19 +314,17 @@ def runTest(frame, nb, log):
overview = """\
A list control presents lists in a number of formats: list view, report view, icon view and small icon view. Elements are numbered from zero.
"""
if __name__ == '__main__':
import sys,os
import run
run.main(['', os.path.basename(sys.argv[0])])