zoukankan      html  css  js  c++  java
  • wxpython demo


    #!/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()

  • 相关阅读:
    C++ 递归读取目录下所有文件
    C++ XML文件解析
    常用数据结构之栈
    常用数据结构之队列
    通过shell快速配置J2EE运行环境
    docker:(5)利用docker -v 和 Publish over SSH插件实现war包自动部署到docker
    docker:(4)利用WebHook实现持续集成
    docker:(3)docker容器挂载宿主主机目录
    docker:(2)通过Dockerfile构建镜像并发布web项目
    docker:(1)docker基本命令使用及发布镜像
  • 原文地址:https://www.cnblogs.com/zhang-pengcheng/p/4322613.html
Copyright © 2011-2022 走看看