我就在这里
发布时间:2013-03-07 23:39:56
def GetDataDir(): """ Return the standard location on this platform for application data """ sp = wx.StandardPaths.Get() return sp.GetUserDataDir()......【阅读全文】
发布时间:2013-03-07 22:46:08
frame.ShowFullScreen(True)frame.ShowFullScreen(True,wx.FULLSCREEN_NOMENUBAR)wx.FULLSCREEN_NOMENUBAR 没有菜单栏wx.FULLSCREEN_NOTOOLBAR 没有工具栏wx.FULLSCREEN_NOSTATUSBAR没有状态栏wx.FULLSCREEN_NOBORDER没有边框wx.FULLSCREEN_NOCAPTION没有标题wx.FULLSCREEN_ALL (all of the above)以上全部没有,.........【阅读全文】
发布时间:2013-03-07 10:19:49
import win32api import win32gui import win32con import time hwnd = win32gui.FindWindowEx(0, 0, 0, "Untitled - Notepad") print hwnd win32gui.ShowWindow(hwnd, win32con.SW_SHOWNORMAL) win32gui.ShowWindow(hwnd, win32con.SW_SHOWNORMAL) #this restores the proper window, so we know we ha.........【阅读全文】
发布时间:2013-03-05 15:35:05
在wxPython中,有几个内置的脚本工具可以用来做图片格式转换,在c:\Python26\Lib\site-packages\wx-2.8-msw-unicode\wx\tools\路径下,包括img2png.py、img2py.py、img2xpm.py。可以使用这些脚本方便地转换图片,如以下两个命令,分别转换图片为.png格式和.xpm格式:img2png.py <img_files...>img2xpm.py <img.........【阅读全文】
发布时间:2013-03-05 12:51:21
x.Frame.__init__(self, parent, id, title, pos, size,style=wx.DEFAULT_FRAME_STYLE^(wx.RESIZE_BORDER | wx.MAXIMIZE_BOX)|wx.STAY_ON_TOP)......【阅读全文】