码迷,mamicode.com
首页 > 编程语言 > 详细

wxpython demo

时间:2015-03-09 01:39:44      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:


#!/usr/bin/python
# encoding: utf-8
‘‘‘Spare.py is a starting point for a wxPython program.‘‘‘
import wx
class Frame(wx.Frame):
    ‘‘‘Frame class that displays an image‘‘‘
    def __init__(self,image, parent=None, id=-1,
                 pos=wx.DefaultPosition,
                 title=‘Hello, wxPython!‘):
        ‘‘‘Create a Frame instance and display image.‘‘‘
        temp = image.ConvertToBitmap()
        size = temp.GetWidth(), temp.GetHeight()
        wx.Frame.__init__(self, parent, id, title, pos, size)
        self.bmp = wx.StaticBitmap(parent=self, bitmap=temp)
class App(wx.App):
    def OnInit(self):
        image = wx.Image(‘test.jpg‘,wx.BITMAP_TYPE_JPEG)
        self.frame = Frame(image)
        self.frame.Show()
        self.SetTopWindow(self.frame)
        return True
def main():
    app = App(redirect=True)
    print ‘aaa‘
    app.MainLoop()
if __name__ == ‘__main__‘:
    main()

 


#!/usr/bin/python
# encoding: utf-8
‘‘‘Spare.py is a starting point for a wxPython program.‘‘‘
import wx
class Frame(wx.Frame):
    pass
class App(wx.App):
    def OnInit(self):
        self.frame = Frame(parent=None,title=‘Spare‘)
        self.frame.Show()
        self.SetTopWindow(self.frame)
        return True
if __name__ == ‘__main__‘:
    app = App()
    app.MainLoop()

 


# encoding: utf-8

import wx
class MyFrame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None, -1, "My Frame", size=(300,300))
        panel = wx.Panel(self, -1)
        panel.Bind(wx.EVT_MOTION, self.OnMove)
        wx.StaticText(panel, -1, "Pos:", pos=(10, 12))
        self.posCtrl = wx.TextCtrl(panel,-1,"",pos=(40,10))
    def OnMove(self, event):
        pos = event.GetPosition()
        self.posCtrl.SetValue("%s, %s" % (pos.x, pos.y))

if __name__ == ‘__main__‘:
#     app = wx.App()
    app = wx.PySimpleApp()
    frame = MyFrame()
    frame.Show(True)
    app.MainLoop()

wxpython demo

标签:

原文地址:http://www.cnblogs.com/zhang-pengcheng/p/4322613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!