wxWidgets/utils/wxPython/demo/FileBrowseButton.py
Robin Dunn 694759cfeb Bug fixes, new tests and demos, new generated source...
Added FileBrowseButton class to the library


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-11-25 07:08:14 +00:00

20 lines
411 B
Python

from wxPython.wx import *
from wxPython.lib.filebrowsebtn import FileBrowseButton
#----------------------------------------------------------------------
def runTest(frame, nb, log):
win = wxPanel(nb, -1)
fbb = FileBrowseButton(win, -1, wxPoint(20,20), wxSize(350, -1))
return win
#----------------------------------------------------------------------
overview = FileBrowseButton.__doc__