文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Custom Controls → GenericDirCtrl

Custom Controls → GenericDirCtrl

时间:2007-04-18  来源:wxPhoenix

overview = """\   This control can be used to place a directory listing (with optional files)
on an arbitrary window. The control contains a TreeCtrl window representing
the directory hierarchy, and optionally, a Choice window containing a list
of filters.
  The filters work in the same manner as in FileDialog.   """
 
   
import wx
import wx.gizmos
import time
  
  
class Frame(wx.Frame):
 
 def __init__(
  self, parent=None, id=wx.ID_ANY, title='wx.GenericDirCtrl', pos=wx.DefaultPosition,
  size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE
  ):
  
  wx.Frame.__init__(self, parent, id, title, pos, size, style)
  self.SetIcon(wx.Icon('wxWidgets.ico', wx.BITMAP_TYPE_ICO))
  
  panel = wx.Panel(self, wx.ID_ANY)
  dirCtrl = wx.GenericDirCtrl(panel, wx.ID_ANY, dir='C:/', pos=(20, 20), size=(200, 225), style=wx.DIRCTRL_SHOW_FILTERS,
         filter="All files (*.*)|*.*|Python files (*.py)|*.py")
  
  
  
  
def TestFrame():
 app = wx.PySimpleApp()
 frame = Frame()
 frame.Centre()
 frame.Show()
 app.MainLoop()
 
 
if __name__ == '__main__':
 TestFrame()
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载