wx.Window is the base class for all windows and represents any visible object on screen. All controls, top level windows and so on are windows. Sizers ...
分类:
编程语言 时间:
2016-11-26 14:45:08
阅读次数:
410
Menus and toolbars A common part in a GUI application is a menubar. A menubar consists of objects called menus. Top-level menus have their labels on t ...
分类:
编程语言 时间:
2016-11-26 13:41:44
阅读次数:
646
第一步:安装Python,安装的版本是python-2.7.9.amd64.msi 安装教程详见地址:http://jingyan.baidu.com/article/c910274be14d64cd361d2dd8.html 第二步:安装wxPython,安装的版本是wxPython2.8-win ...
分类:
其他好文 时间:
2016-11-18 12:02:35
阅读次数:
249
1. 丰富的平台 2.wxpython 创建实例GUI 实例要求: 2.1 简单的示例程序: 1 2 3 >>> import wx #导入模块 >>> app = wx.App() #初始化基本的引用程序类 >>> app.MainLoop() #wx中的包方法大写开头,与Python习惯相反 1 ...
分类:
其他好文 时间:
2016-11-15 08:17:58
阅读次数:
259
wxPython控件学习之wx.grid.Grid (包括对GridCellEditor和GridCelRender的扩展,以支持更多的grid cell 样式, 以GridCellColorEditor为例) wx.Grid 及其相关的类是用来显示和编辑类表格样式的数据。该控件为显示,编辑数据源提 ...
分类:
编程语言 时间:
2016-11-13 19:34:28
阅读次数:
1568
转自 http://xoomer.virgilio.it/infinity77/Phoenix/lib.agw.customtreectrl.CustomTreeCtrl.html这个网址中有许多控件的讲解 CustomTreeCtrl is a class that mimics the beha ...
分类:
编程语言 时间:
2016-11-13 19:27:28
阅读次数:
292
转自http://xoomer.virgilio.it/infinity77/Phoenix/lib.agw.html,,,哈哈终于找到了这块的内容,书上基本没有讲解 This is the Advanced Generic Widgets package (AGW). It provides ma ...
分类:
编程语言 时间:
2016-11-13 19:23:41
阅读次数:
362
BoxSizer (尺寸器),默认水平,可以先建立水平的BoxSizer 然后将水平的合成竖直的BoxSizer。 panel是幕布,flag设置相应参数,proportion 设置1(根据窗口改变时获取所有全部额外空间)和0。 Button有默认大小,可以用Size设置。 bind函数可以绑定事件 ...
分类:
编程语言 时间:
2016-11-10 01:55:27
阅读次数:
187
. 消息对话框(wx.MessageDialog) 消息对话框 与用户通信最基本的机制是wx.MessageDialog,它是一个简单的提示框。 wx.MessageDialog可用作一个简单的OK框或yes/no对话框。下面的片断显示了yes/no对话框: 4.标准文件对话框 wx.FileDia ...
分类:
编程语言 时间:
2016-11-04 01:35:13
阅读次数:
276