我就在这里
发布时间: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)......【阅读全文】
发布时间:2013-03-05 11:41:54
self.Bind vs. self.button.BindA common question/confusion that wxPython developers have is what's the difference between self.Bind(wx.EVT_BUTTON, self.OnButton, self.button)and self.button.Bind(wx.EVT_BUTTON, self.OnButton)where self is some window further .........【阅读全文】