]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/samples/wxPIA_book/Chapter-09/image_box.py
fix building/running of tex2rtf
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-09 / image_box.py
... / ...
CommitLineData
1import wx
2import wx.lib.imagebrowser as imagebrowser
3
4if __name__ == "__main__":
5 app = wx.PySimpleApp()
6 dialog = imagebrowser.ImageDialog(None)
7 if dialog.ShowModal() == wx.ID_OK:
8 print "You Selected File: " + dialog.GetFile()
9 dialog.Destroy()
10
11