wxWidgets/utils/wxPython/demo/FileBrowseButton.py
Robin Dunn a6ad3e89c6 Various small fixes and tweaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4775 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
1999-11-30 18:23:57 +00:00

20 lines
414 B
Python

from wxPython.wx import *
from wxPython.lib.filebrowsebutton 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__