]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/FileBrowseButton.py
Bug fixes, new tests and demos, new generated source...
[wxWidgets.git] / utils / wxPython / demo / FileBrowseButton.py
diff --git a/utils/wxPython/demo/FileBrowseButton.py b/utils/wxPython/demo/FileBrowseButton.py
new file mode 100644 (file)
index 0000000..ed322b6
--- /dev/null
@@ -0,0 +1,19 @@
+
+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__