694759cfeb
Added FileBrowseButton class to the library git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
20 lines
411 B
Python
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__
|