代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/296686/8081247
py miniframe.py
import wx
#---------------------------------------------------------------------------
class MyMiniFrame(wx.MiniFrame):
def __init__(
self, parent, title, pos=wx.DefaultPosition,
www.eeworm.com/read/296686/8081255
py viewer.py
#!/usr/bin/env python
"""
Run wxPython in a second thread.
Overview:
Importing this module creates a second thread and starts
wxPython in that thread. Its single meth
www.eeworm.com/read/296686/8081273
py ticker.py
import wx
from wx.lib.ticker import Ticker
import wx.lib.colourselect as csel #for easy color selection
#----------------------------------------------------------------------
www.eeworm.com/read/296686/8081281
py activex_pdfwindow.py
import sys
import wx
if wx.Platform == '__WXMSW__':
from wx.lib.pdfwin import PDFWindow
#----------------------------------------------------------------------
class TestPanel(wx.Pa
www.eeworm.com/read/296686/8081427
py genericdirctrl.py
import wx
#----------------------------------------------------------------------
class TestPanel(wx.Panel):
def __init__(self, parent, log):
wx.Panel.__init__(self, parent, -1)
www.eeworm.com/read/296686/8081474
py img2pyartprovider.py
import wx
from wx.lib.art import flagart, img2pyartprov
FlagArtProvider = None
#----------------------------------------------------------------------
class TestPanel(wx.Panel):
def _
www.eeworm.com/read/296686/8081600
py checkbox.py
import wx
#---------------------------------------------------------------------------
class TestCheckBox(wx.Panel):
def __init__(self, parent, log):
self.log = log
wx.
www.eeworm.com/read/296686/8081710
py collapsiblepane.py
import wx
#----------------------------------------------------------------------
label1 = "Click here to show pane"
label2 = "Click here to hide pane"
btnlbl1 = "call Expand(True)"
btnlb
www.eeworm.com/read/296686/8081790
py mdisashdemo.py
#!/usr/bin/env python
import wx
import ScrolledWindow
#----------------------------------------------------------------------
# There are better ways to do IDs, but this demo requires that t
www.eeworm.com/read/296686/8082098
py colorpanel.py
#
# Note: this module is not a demo per se, but is used by many of
# the demo modules for various purposes.
#
import wx
#---------------------------------------------------------------------