wxpython中文教程_wxPython快速入门教程

wxpython中文教程_wxPython快速入门教程1第一个应用程序“Hello,world”importwxapp=wx.App(False)frame=wx.Frame(None,wx.ID_ANY,”HolloWorld”)frame.Show(True)app.MainLoop()2是创造一个wx.App实例。参数是“False”的意思是不将stdout和stderr重定向到一个窗口,这个参数是“True”对这个例子没有…

大家好,又见面了,我是你们的朋友全栈君。

1 第一个应用程序 “Hello,world”

import wx

app = wx.App(False)

frame = wx.Frame(None, wx.ID_ANY, “Hollo World”)

frame.Show(True)

app.MainLoop()

2是创造一个wx.App实例。参数是“False”的意思是不将stdout和stderr重定向到一个窗口,这个参数是“True”对这个例子没有影响。

3创建一个顶级窗口,语法为x.Frame(parent,ID,标题)。这个例子中wx.ID_ANY wxWidgets为我们挑选一个id。

4显示窗口

5主循环,处理事件

2输入多行文字wx.TextCtrl

import wx

class my_frame(wx.Frame):

“””We simple derive a new class of Frame”””

def __init__(self,parent, title):

wx.Frame.__init__(self, parent, title=title,size=(300,100))

self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE)

self.Show(True)

app = wx.App(False)

frame = my_frame (None,’Small edior’)

app.MainLoop()

继承来自wx.Frame的__init__方法。声明一个wx.TextCtrl控件

(简单的文本编辑控件)

3增加一个菜单

import wx

class my_frame(wx.Frame):

“””We simple derive a new class of Frame”””

def __init__(self,parent, title):

wx.Frame.__init__(self, parent, title=title,size=(300,200))

self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE,)

self.Show(True)

self.CreateStatusBar()#创建窗口底部的状态栏

filemenu = wx.Menu()

filemenu.Append(wx.ID_EXIT, “Exit”, “Termanate the program”)

filemenu.AppendSeparator()

filemenu.Append(wx.ID_ABOUT, “About”, “Information about this program”)#设置菜单的内容

menuBar = wx.MenuBar()

menuBar.Append(filemenu, u”设置”)

self.SetMenuBar(menuBar)#创建菜单条

self.Show(True)

app = wx.App(False)

frame = my_frame(None, ‘Small edior’)

app.MainLoop()

wx.ID_ABOUT和wx.id_EXIT这是标准wxWidgets提供的id,这样做的好处是可以保证兼容性,多个平台可以运行

4事件处理

import wx

class my_frame(wx.Frame):

“””We simple derive a new class of Frame”””

def __init__(self,parent, title):

wx.Frame.__init__(self, parent, title=title,size=(300,200))

self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE,)

self.Show(True)

self.CreateStatusBar()#创建窗口底部的状态栏

filemenu = wx.Menu()

menu_exit = filemenu.Append(wx.ID_EXIT, “Exit”, “Termanate the program”)

filemenu.AppendSeparator()

menu_about = filemenu.Append(wx.ID_ABOUT, “About”, “Information about this program”)#设置菜单的内容

menuBar = wx.MenuBar()

menuBar.Append(filemenu, u”设置”)

self.SetMenuBar(menuBar)#创建菜单条

self.Show(True)

self.Bind(wx.EVT_MENU, self.on_about, menu_about)

self.Bind(wx.EVT_MENU, self.on_exit, menu_exit)#把出现的事件,同需要处理的函数连接起来

def on_about(self,e):#about按钮的处理函数

dlg = wx.MessageDialog(self,”A samll text editor”, “About sample Editor”,wx.OK)#创建一个对话框,有一个ok的按钮

dlg.ShowModal()#显示对话框

dlg.Destroy()#完成后,销毁它。

def on_exit(self,e):

self.Close(True)

app = wx.App(False)

frame = my_frame(None, ‘Small edior’)

app.MainLoop()

第一步是设定事件,然后设定事件出现后应该执行什么操作,最后把事件和操作连接起来。

5弹出对话框,选择要编辑的文件

def on_open(self,e):

“””open a file”””

self.dirname = ”

dlg = wx.FileDialog(self,”Choose a file”, self.dirname, “”,”*.*”,wx.OPEN)#调用一个函数打开对话框

if dlg.ShowModal() == wx.ID_OK:

self.filename = dlg.GetFilename()

self.dirname = dlg.GetDirectory()

f = open(os.path.join(self.dirname,self.filename),”r”)

dlg.Destroy()

然后把这个方法和添加进入菜单和一个按钮事件绑定起来

完整代码

import wx

import os

class my_frame(wx.Frame):

“””This is a simple text editor”””

def __init__(self,parent, title):

wx.Frame.__init__(self, parent, title=title,size=(300,200))

self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE,)

self.Show(True)

self.CreateStatusBar()#创建窗口底部的状态栏

filemenu = wx.Menu()

menu_open = filemenu.Append(wx.ID_OPEN,U”打开文件”, ” “)

menu_exit = filemenu.Append(wx.ID_EXIT, “Exit”, “Termanate the program”)

filemenu.AppendSeparator()

menu_about = filemenu.Append(wx.ID_ABOUT, “About”, “Information about this program”)#设置菜单的内容

menuBar = wx.MenuBar()

menuBar.Append(filemenu, u”设置”)

self.SetMenuBar(menuBar)#创建菜单条

self.Show(True)

self.Bind(wx.EVT_MENU,self.on_open,menu_open)

self.Bind(wx.EVT_MENU, self.on_about, menu_about)

self.Bind(wx.EVT_MENU, self.on_exit, menu_exit)#把出现的事件,同需要处理的函数连接起来

def on_about(self,e):#about按钮的处理函数

dlg = wx.MessageDialog(self,”A samll text editor”, “About sample Editor”,wx.OK)#创建一个对话框,有一个ok的按钮

dlg.ShowModal()#显示对话框

dlg.Destroy()#完成后,销毁它。

def on_exit(self,e):

self.Close(True) def on_open(self,e):

“””open a file”””

self.dirname = ”

dlg = wx.FileDialog(self,”Choose a file”, self.dirname, “”,”*.*”,wx.OPEN)#调用一个函数打开对话框

if dlg.ShowModal() == wx.ID_OK:

self.filename = dlg.GetFilename()

self.dirname = dlg.GetDirectory()

f = open(os.path.join(self.dirname,self.filename),”r”)

dlg.Destroy()

app = wx.App(False)

frame = my_frame(None, ‘Small edior’)

app.MainLoop()

6.把文件读取出来的数据,显示在文本框内。并加入保存文件的功能。打开文件时使用decode(),保存时使用encode(),使用unicode防止因为中文出现的错误。

# -*- coding: utf-8 -*-

import wximport os

class my_frame(wx.Frame):

“””This is a simple text editor”””

def __init__(self,parent, title):

wx.Frame.__init__(self, parent, title=title,size=(300,200))

self.control = wx.TextCtrl(self, -1,u”请先打开要修改的文件”, style=wx.TE_MULTILINE,)

self.Show(True)

self.CreateStatusBar()#创建窗口底部的状态栏

filemenu = wx.Menu()

menu_open = filemenu.Append(wx.ID_OPEN, U”打开文件”, ” “)

menu_save = filemenu.Append(wx.ID_SAVE, U”保存修改”,)

menu_exit = filemenu.Append(wx.ID_EXIT, “Exit”, “Termanate the program”)

filemenu.AppendSeparator()

menu_about = filemenu.Append(wx.ID_ABOUT, “About”, “Information about this program”)#设置菜单的内容

menuBar = wx.MenuBar()

menuBar.Append(filemenu, u”选项”)

self.SetMenuBar(menuBar)#创建菜单条

self.Show(True)

self.Bind(wx.EVT_MENU, self.on_open, menu_open)

self.Bind(wx.EVT_MENU, self.on_about, menu_about)

self.Bind(wx.EVT_MENU, self.on_exit, menu_exit)#把出现的事件,同需要处理的函数连接起来

self.Bind(wx.EVT_MENU, self.on_save, menu_save) def on_about(self,e):#about按钮的处理函数

dlg = wx.MessageDialog(self,”A samll text editor”, “About sample Editor”,wx.OK)#创建一个对话框,有一个ok的按钮

dlg.ShowModal()#显示对话框

dlg.Destroy()#完成后,销毁它。

def on_exit(self,e):

self.Close(True) def on_open(self,e):

“””open a file”””

self.dirname = ”

dlg = wx.FileDialog(self,”Choose a file”, self.dirname, “”,”*.*”,wx.OPEN)#调用一个函数打开对话框

if dlg.ShowModal() == wx.ID_OK:

self.filename = dlg.GetFilename()

self.dirname = dlg.GetDirectory()

self.address = os.path.join(self.dirname,self.filename)

f = open(self.address,”r”)

file = (f.read()).decode(encoding=’utf-8′)#解码,使文件可以读取中文

f.close()

self.control.Clear()

self.control.AppendText(file)#把打开的文件内容显示在多行文本框内

dlg.Destroy() def on_save(self, e):

date = (self.control.GetValue()).encode(encoding=”utf-8″)#编码,使中文可以正确存储

f = open(self.address, ‘w’)

f.write(date)

f.close()#把文本框内的数据写入并关闭文件

dlg = wx.MessageDialog(self, u”文件已经成功保存”, u”消息提示”, wx.OK)

dlg.ShowModal()

dlg.Destroy()

self.control.Clear()

self.control.AppendText(u’欢迎使用此软件,作者即刻’)

app = wx.App(False)

frame = my_frame(None, u’迷你文本编辑器’)

app.MainLoop()

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/143367.html原文链接:https://javaforall.net

(0)
上一篇 2022年5月21日 下午8:00
下一篇 2022年5月21日 下午8:00


相关推荐

  • pycharm中安装opencv2_starter安装报错

    pycharm中安装opencv2_starter安装报错图像处理新人,想练习一下opencv库在PyCharm终端pipinstallopencv-python显示安装失败!!!查看了一下竟然是因为BOSEInterpreter是Anaconda去官网上下载了个python解释器就好了!!!给自己提个醒吧!

    2022年8月25日
    8
  • 地形分析的主要内容(流浪地球的特效水平)

    早期的天龙八部跟武侠世界基本相似。先简单地说一下载入场景的大致过程:     读取.Scene文件     根据读取.Terrain文件     读取地砖大小()地形大小(,),缩放值()。     读取所有要用的地形贴图(中各项)。     读取.g

    2022年4月15日
    51
  • AndroidStudio-断点调试-让你的调试更有效率

    AndroidStudio-断点调试-让你的调试更有效率前言:上篇博客AndroidStudio-断点调试-也许你该知道断点调试是有多么的美好,记录了AndroidStudio上断点调试的基本流程和debug面板按钮介绍.这一篇就给大家分享一点调试的小技巧,让我们的代码调试变得更有效率.你可以选择随时进入调试模式一般我们都是点击绿色小昆虫进入调试模式进行调试,其实还可以有另外一种方法.看下面的面板截图,有没有发现有两个小昆虫图标.图标E

    2022年5月21日
    64
  • strstr函数 C++

    strstr函数 C++strstr函数分类: C/C++2011-08-1310:00 696人阅读 评论(0) 收藏 举报函数名:strstr功能:在串中查找指定字符串的第一次出现用法:char*strstr(char*str1,char*str2);程序例:#include#includeintmain(void){

    2022年6月25日
    25
  • 词向量表示[通俗易懂]

    词向量表示[通俗易懂]1、语言表示语音中,用音频频谱序列向量所构成的矩阵作为模型的输入;在图像中,用图像的像素构成的矩阵数据作为模型的输入。这些都可以很好表示语音/图像数据。而语言高度抽象,很难刻画词语之间的联系,比如“麦克风”和“话筒”这样的同义词,从字面上也难以看出这两者意思相同,即“语义鸿沟”现象。1.1、分布假说上下文相似的词,其语义也相似。1.2、语言模型文本学习:词频、词的共现、词的搭配。语言模型判定一句话是否为自然语言。机器翻译、拼写纠错、音字转换、问答系统、语音识别等应用在得到若干候…

    2022年5月25日
    51
  • OpenClaw 智能部署:让 AI 落地更简单的三步路径

    OpenClaw 智能部署:让 AI 落地更简单的三步路径

    2026年3月14日
    3

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号