반응형
import wx
class TestFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent, -1, 'test', size=(500,700))
dir3 = wx.GenericDirCtrl(self, -1,
dir='C:/Television',
style=wx.DIRCTRL_SHOW_FILTERS |
wx.DIRCTRL_3D_INTERNAL |
wx.DIRCTRL_MULTIPLE,
filter="Python files (*.py)|*.py")
app = wx.App()
frm = TestFrame(None)
frm.Show()
app.MainLoop()
반응형
'Programming > Python_Etc' 카테고리의 다른 글
wxpython 폴더 트리 컨트롤 (0) | 2020.06.18 |
---|---|
wxpython 간단한 트리 (0) | 2020.06.17 |
wxpython 간단한 메뉴 (0) | 2020.06.16 |
wxpython 간단한 프레임 예제(FlexGridSizer) (0) | 2020.06.16 |
wxpython 간단한 프레임 예제(BoxSizer) (0) | 2020.06.16 |