Py之wxPython:wxPython的简介、安装、使用方法之详细攻略

简介: Py之wxPython:wxPython的简介、安装、使用方法之详细攻略

wxPython的简介


           wxPython是Phoenix项目!Phoenix是改进的下一代wxPython,“比以前更好、更强、更快”。这个新的实现主要关注于提高速度、可维护性和可扩展性。就像“经典”的WXPython一样,菲尼克斯封装了WxWistGe+C++工具包,并提供了对WxWistGeAPI API的用户界面部分的访问,使Python应用程序在Windows、MACS或UNIX系统上具有本地GUI,具有本地的外观和感觉,并且需要非常少的(如果有的话)特定于平台的代码。

          实用工具wxdocs和wxdemo将使用wxget(如果必要)下载适当的文件,解压缩它们(如果必要),并启动相应项的适当版本。(文档在默认浏览器中启动,演示用python启动)。

         wxPython是Python语言的跨平台GUI工具箱。使用wxPython,软件开发人员可以为他们的Python应用程序创建真正的本地用户界面,这些应用程序在Windows、Mac和Linux或其他类unix系统上很少或没有修改的情况下运行。


wxPython pypi

wxPython官网



wxPython的安装


pip install wxPython


image.png



wxPython的使用方法


wx.Frame.SetBackgroundColour(self,'green')  #给窗口设置背景颜色



1、example 一


# First things, first. Import the wxPython package.

import wx

# Next, create an application object.

app = wx.App()

# Then a frame.

frm = wx.Frame(None, title="Hello World")

# Show it.

frm.Show()

# Start the event loop.

app.MainLoop()

2、example 二


#!/bin/python

"""

Hello World, but with more meat.

"""

import wx

class HelloFrame(wx.Frame):

   """

   A Frame that says Hello World

   """

   def __init__(self, *args, **kw):

       # ensure the parent's __init__ is called

       super(HelloFrame, self).__init__(*args, **kw)

       # create a panel in the frame

       pnl = wx.Panel(self)

       # and put some text with a larger bold font on it

       st = wx.StaticText(pnl, label="Hello World!", pos=(25,25))

       font = st.GetFont()

       font.PointSize += 10

       font = font.Bold()

       st.SetFont(font)

       # create a menu bar

       self.makeMenuBar()

       # and a status bar

       self.CreateStatusBar()

       self.SetStatusText("Welcome to wxPython!")

   def makeMenuBar(self):

       """

       A menu bar is composed of menus, which are composed of menu items.

       This method builds a set of menus and binds handlers to be called

       when the menu item is selected.

       """

       # Make a file menu with Hello and Exit items

       fileMenu = wx.Menu()

       # The "\t..." syntax defines an accelerator key that also triggers

       # the same event

       helloItem = fileMenu.Append(-1, "&Hello...\tCtrl-H",

               "Help string shown in status bar for this menu item")

       fileMenu.AppendSeparator()

       # When using a stock ID we don't need to specify the menu item's

       # label

       exitItem = fileMenu.Append(wx.ID_EXIT)

       # Now a help menu for the about item

       helpMenu = wx.Menu()

       aboutItem = helpMenu.Append(wx.ID_ABOUT)

       # Make the menu bar and add the two menus to it. The '&' defines

       # that the next letter is the "mnemonic" for the menu item. On the

       # platforms that support it those letters are underlined and can be

       # triggered from the keyboard.

       menuBar = wx.MenuBar()

       menuBar.Append(fileMenu, "&File")

       menuBar.Append(helpMenu, "&Help")

       # Give the menu bar to the frame

       self.SetMenuBar(menuBar)

       # Finally, associate a handler function with the EVT_MENU event for

       # each of the menu items. That means that when that menu item is

       # activated then the associated handler function will be called.

       self.Bind(wx.EVT_MENU, self.OnHello, helloItem)

       self.Bind(wx.EVT_MENU, self.OnExit,  exitItem)

       self.Bind(wx.EVT_MENU, self.OnAbout, aboutItem)

   def OnExit(self, event):

       """Close the frame, terminating the application."""

       self.Close(True)

   def OnHello(self, event):

       """Say hello to the user."""

       wx.MessageBox("Hello again from wxPython")

   def OnAbout(self, event):

       """Display an About Dialog"""

       wx.MessageBox("This is a wxPython Hello World sample",

                     "About Hello World 2",

                     wx.OK|wx.ICON_INFORMATION)

if __name__ == '__main__':

   # When this module is run (not imported) then create the app, the

   # frame, show it, and start the event loop.

   app = wx.App()

   frm = HelloFrame(None, title='Hello World 2')

   frm.Show()

   app.MainLoop()



相关文章
|
7月前
|
Linux API 开发者
python2安装wxpython模块源
【4月更文挑战第4天】
102 11
|
7月前
|
数据可视化 API 开发者
Python中的图形界面开发:Tkinter、PyQt或wxPython入门
Python中的图形界面开发:Tkinter、PyQt或wxPython入门
239 0
|
数据可视化 Unix Linux
wxPython界面设计初体验-值得学习的 Python GUI 库 (2)
前两篇文章写了关于Python GUI库Tkinter和pyqt5的使用体验,但是Python GUI怎么能少得了wxpython呢?不能偏心,必须安排全了,一家人必须整整齐齐(哈哈哈~) Python GUI作为桌面软件设计重要部分,是开发桌软中不可或缺,也是不可避免的一环,灵活掌握GUI库的使用,才能让自己不惧任何GUI相关的需求,设计出的界面更加符合需求,更加精美. 给用户的第一印象是界面设计,毕竟大家大多都是外貌协会,简洁且好看的页面,是一个软件或者程序吸引人的最大亮点,所以掌握各种GUI的使用是我们桌面软件开发程序猿的必备技能,就算工作不需要,平时搞个辅助小软件也是不错,总不能要
615 0
|
索引 Windows Python
|
C++ Python Linux
Python之wxPython模块的安装
  wxPython模块是Python进行GUI设计的一个模块,它是由C++写成的,有两个版本:Classic和Phoniex, 前者主要为Python2设计,后者则是为Python3量身定制。
2555 0
|
Python
python (3):wxPython打包app,报错
1,打包app报错 如图: 使用py2app,mac下打包成app,异常,程序直接退出。 没有具体的错误信息,客户端程序直接崩溃了。 2,原因 代码没有几行: #!/usr/bin/python # -*- coding: utf-8 -*- import wx app = wx.App(False) # Create a new app, don't
1713 0
|
Python Windows Ubuntu
ubuntu 下面 安装 python wxPython
直接参考 官方的安装文档。   学习python 的时候就 用 wxPython 。   那个时候用的是windows 的版本。   现在 用 ubuntu 下开发了。没有搭建好环境。   其实就一句话:   sudo apt-get install python-wxgtk2.8   就可以了。
1074 0
|
14天前
|
人工智能 数据可视化 数据挖掘
探索Python编程:从基础到高级
在这篇文章中,我们将一起深入探索Python编程的世界。无论你是初学者还是有经验的程序员,都可以从中获得新的知识和技能。我们将从Python的基础语法开始,然后逐步过渡到更复杂的主题,如面向对象编程、异常处理和模块使用。最后,我们将通过一些实际的代码示例,来展示如何应用这些知识解决实际问题。让我们一起开启Python编程的旅程吧!