Python论坛  - 讨论区

标题:[python-chinese] wxPython 求助

2005年11月14日 星期一 16:22

Guofeng Yuan loocoo at gmail.com
Mon Nov 14 16:22:16 HKT 2005

self.tree.AppendItem(self.root,"3d统计图",1001)

如何在SelChanged 事件中得到 1001 这个数据呀?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051114/c4376cf6/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 16:30

Jason Liu telecomliu at gmail.com
Mon Nov 14 16:30:10 HKT 2005

在 05-11-14,Guofeng Yuan<loocoo at gmail.com> 写道:
> self.tree.AppendItem(self.root,"3d统计图",1001)
>
> 如何在SelChanged 事件中得到 1001 这个数据呀?
>
>

wxTreeCtrl::GetItemImage

> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到
> python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 16:34

limodou limodou at gmail.com
Mon Nov 14 16:34:31 HKT 2005

在 05-11-14,Guofeng Yuan<loocoo at gmail.com> 写道:
> self.tree.AppendItem(self.root,"3d统计图",1001)
>
> 如何在SelChanged 事件中得到 1001 这个数据呀?
>

你的调用有问题呀,文档上说:

wxTreeItemId AppendItem(const wxTreeItemId& parent, const wxString&
text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL)

因为你没有使用key argument,因此第三个参数是image,也就是图片的索引。是这样吗?
如果是想得到图片索引可以使用 GetItemImage(item, wx.TreeItemIcon_Normal)

如果是一个附加数据,那么加入时,应该是:

self.tree.AppendItem(self.root, '3d统计图", data=1001)
然后在事件中使用self.tree.GetPyData(item)即可。


--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 16:42

mydooom mydooom at gmail.com
Mon Nov 14 16:42:11 HKT 2005

LIMODOU把你的WXPYTHON的文档给我一个吧,谢谢

在05-11-14,limodou <limodou at gmail.com> 写道:
>
> 在 05-11-14,Guofeng Yuan<loocoo at gmail.com> 写道:
> > self.tree.AppendItem(self.root,"3d统计图",1001)
> >
> > 如何在SelChanged 事件中得到 1001 这个数据呀?
> >
>
> 你的调用有问题呀,文档上说:
>
> wxTreeItemId AppendItem(const wxTreeItemId& parent, const wxString&
> text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL)
>
> 因为你没有使用key argument,因此第三个参数是image,也就是图片的索引。是这样吗?
> 如果是想得到图片索引可以使用 GetItemImage(item, wx.TreeItemIcon_Normal)
>
> 如果是一个附加数据,那么加入时,应该是:
>
> self.tree.AppendItem(self.root, '3d统计图", data=1001)
> 然后在事件中使用self.tree.GetPyData(item)即可。
>
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051114/aa3bda4b/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 16:59

mydooom mydooom at gmail.com
Mon Nov 14 16:59:18 HKT 2005

LIMOBO你开发WXPYTHON程序是全部自己写还是从DEMO等现有的代码中拷贝过来再改呢?我觉得要一个一个写太麻烦了。。很多单词都记不到,呵呵,还是拷来改方便。

在05-11-14,mydooom <mydooom at gmail.com> 写道:
>
> LIMODOU把你的WXPYTHON的文档给我一个吧,谢谢
>
> 在05-11-14,limodou <limodou at gmail.com> 写道:
> >
> > 在 05-11-14,Guofeng Yuan<loocoo at gmail.com> 写道:
> > > self.tree.AppendItem (self.root,"3d统计图",1001)
> > >
> > > 如何在SelChanged 事件中得到 1001 这个数据呀?
> > >
> >
> > 你的调用有问题呀,文档上说:
> >
> > wxTreeItemId AppendItem(const wxTreeItemId& parent, const wxString&
> > text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL)
> >
> > 因为你没有使用key argument,因此第三个参数是image,也就是图片的索引。是这样吗?
> > 如果是想得到图片索引可以使用 GetItemImage(item, wx.TreeItemIcon_Normal)
> >
> > 如果是一个附加数据,那么加入时,应该是:
> >
> > self.tree.AppendItem(self.root, '3d统计图", data=1001)
> > 然后在事件中使用self.tree.GetPyData (item)即可。
> >
> >
> > --
> > I like python!
> > My Blog: http://www.donews.net/limodou
> > NewEdit Maillist: http://groups.google.com/group/NewEdit
> >
> > _______________________________________________
> > Python中文技术讨论邮件列表
> > 发言: 发邮件到 python-chinese at lists.python.cn
> > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> > 详细说明: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051114/ef857a2b/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 17:06

limodou limodou at gmail.com
Mon Nov 14 17:06:00 HKT 2005

在 05-11-14,mydooom<mydooom at gmail.com> 写道:
> LIMODOU把你的WXPYTHON的文档给我一个吧,谢谢
>

不会吧,这个可以下呀。wxPython在2.6之后是分开下载的。

http://prdownloads.sourceforge.net/wxpython/wxPython2.6-win32-docs-demos-2.6.1.0.exe

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 17:10

amingsc amingsc at 163.com
Mon Nov 14 17:10:12 HKT 2005

装个wxpython demo吧
那里面有详尽的例子和文档的

在 2005年11月14日 星期一 16:42,mydooom 写道:
> LIMODOU把你的WXPYTHON的文档给我一个吧,谢谢
>
> 在05-11-14,limodou <limodou at gmail.com> 写道:
>
> > 在 05-11-14,Guofeng Yuan<loocoo at gmail.com> 写道:
> >
> > > self.tree.AppendItem(self.root,"3d统计图",1001)
> > >
> > > 如何在SelChanged 事件中得到 1001 这个数据呀?
> >
> > 你的调用有问题呀,文档上说:
> >
> > wxTreeItemId AppendItem(const wxTreeItemId& parent, const wxString&
> > text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL)
> >
> > 因为你没有使用key argument,因此第三个参数是image,也就是图片的索引。是这样吗?
> > 如果是想得到图片索引可以使用 GetItemImage(item, wx.TreeItemIcon_Normal)
> >
> > 如果是一个附加数据,那么加入时,应该是:
> >
> > self.tree.AppendItem(self.root, '3d统计图", data=1001)
> > 然后在事件中使用self.tree.GetPyData(item)即可。
> >
> >
> > --
> > I like python!
> > My Blog: http://www.donews.net/limodou
> > NewEdit Maillist: http://groups.google.com/group/NewEdit
> >
> > _______________________________________________
> > Python中文技术讨论邮件列表
> > 发言: 发邮件到 python-chinese at lists.python.cn
> > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> > 详细说明: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 17:21

He Wenjie henotii at gmail.com
Mon Nov 14 17:21:11 HKT 2005

哪里可以找到比较多的使用XRC的的例子呀?
它的wiki上的例子太少,而且很老了

在 05-11-14,amingsc<amingsc at 163.com> 写道:
> 装个wxpython demo吧
> 那里面有详尽的例子和文档的

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 17:27

黑沙 fred.li.1979.m.bj.prc at gmail.com
Mon Nov 14 17:27:05 HKT 2005

重要的是 应用程序框架 没地方可以抄!

在05-11-14,mydooom <mydooom at gmail.com> 写道:
>
>
> LIMOBO你开发WXPYTHON程序是全部自己写还是从DEMO等现有的代码中拷贝过来再改呢?我觉得要一个一个写太麻烦了。。很多单词都记不到,呵呵,还是拷来改方便。
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051114/c883a5cb/attachment-0001.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月14日 星期一 19:15

limodou limodou at gmail.com
Mon Nov 14 19:15:34 HKT 2005

在 05-11-14,黑沙<fred.li.1979.m.bj.prc at gmail.com> 写道:
> 重要的是 应用程序框架 没地方可以抄!
>

那就需要多留意wxPython编的软件呀,多的是。比如taskcoach就不错。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 09:08

mydooom mydooom at gmail.com
Tue Nov 15 09:08:34 HKT 2005

我下了的,但是基本上都是例子。。我要每个API的原形,作用等啊。好象没呢。只有个C++的那个

在05-11-14,limodou <limodou at gmail.com> 写道:
>
> 在 05-11-14,mydooom<mydooom at gmail.com> 写道:
> > LIMODOU把你的WXPYTHON的文档给我一个吧,谢谢
> >
>
> 不会吧,这个可以下呀。wxPython在2.6之后是分开下载的。
>
>
> http://prdownloads.sourceforge.net/wxpython/wxPython2.6-win32-docs-demos-2.6.1.0.exe
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051115/9d58f810/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 09:13

limodou limodou at gmail.com
Tue Nov 15 09:13:19 HKT 2005

在 05-11-15,mydooom<mydooom at gmail.com> 写道:
> 我下了的,但是基本上都是例子。。我要每个API的原形,作用等啊。好象没呢。只有个C++的那个
>

C++的那个就是。如果在python有特别的地方,文档会有说明的。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 09:35

mydooom mydooom at gmail.com
Tue Nov 15 09:35:35 HKT 2005

对了。里面有个XRCed工具。。有了界面如何生成PY代码呢?

在05-11-15,limodou <limodou at gmail.com> 写道:
>
> 在 05-11-15,mydooom<mydooom at gmail.com> 写道:
> > 我下了的,但是基本上都是例子。。我要每个API的原形,作用等啊。好象没呢。只有个C++的那个
> >
>
> C++的那个就是。如果在python有特别的地方,文档会有说明的。
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051115/08670b69/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 10:06

limodou limodou at gmail.com
Tue Nov 15 10:06:23 HKT 2005

在 05-11-15,mydooom<mydooom at gmail.com> 写道:
> 对了。里面有个XRCed工具。。有了界面如何生成PY代码呢?
>

那个东西生成的是xml代码,需要在wxPython程序中进行装载,不需要生成py代码。有一个叫iPodder的程序就是这样来生成界面的。NewEdit中也用到了,但做了扩展,可能看起来并不方便。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 10:55

Tom zysno1 at gmail.com
Tue Nov 15 10:55:59 HKT 2005

limodou wrote:

>在 05-11-15,mydooom<mydooom at gmail.com> 写道:
>  
>
>>对了。里面有个XRCed工具。。有了界面如何生成PY代码呢?
>>
>>    
>>
>
>那个东西生成的是xml代码,需要在wxPython程序中进行装载,不需要生成py代码。有一个叫iPodder的程序就是这样来生成界面的。NewEdit中也用到了,但做了扩展,可能看起来并不方便。
>
>--
>I like python!
>My Blog: http://www.donews.net/limodou
>NewEdit Maillist: http://groups.google.com/group/NewEdit
>  
>
>------------------------------------------------------------------------
>
>_______________________________________________
>PythonÖÐÎļ¼ÊõÌÖÂÛÓʼþÁбí
>·¢ÑÔ: ·¢Óʼþµ½ python-chinese at lists.python.cn
>¶©ÔÄ: ·¢ËÍ subscribe µ½ python-chinese-requehst at lists.python.cn
>Í˶©: ·¢ËÍ unsubscribe µ½  python-chinese-request at lists.python.cn
>Ïêϸ˵Ã÷: http://python.cn/mailman/listinfo/python-chinese
>
问一个弱弱的问题

wxpython和pygtk相比,有什么区别?

我在google上找到这样一段话,

If you run wxPython on top of some other toolkit, then you'll
need that toolkit's runtimes instead of GTK.

为什么gtk作runtime呢?
还有,pygtk和wxpython这些东西现在主要作什么阿?



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 11:31

limodou limodou at gmail.com
Tue Nov 15 11:31:28 HKT 2005

> 问一个弱弱的问题
>
> wxpython和pygtk相比,有什么区别?
>
> 我在google上找到这样一段话,
>
> If you run wxPython on top of some other toolkit, then you'll
> need that toolkit's runtimes instead of GTK.
>
> 为什么gtk作runtime呢?
> 还有,pygtk和wxpython这些东西现在主要作什么阿?
>

区别在于wxPython在 linux下是建筑于gtk之上,但在windows下是建筑于 windows本地gui之上。而gtk在
windows下也是自已的。因此从显示上,当 wxPython在 windows下运行时会显示为windows的本地控件。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 11:45

Qiangning Hong hongqn at gmail.com
Tue Nov 15 11:45:42 HKT 2005

Tom wrote:

[回帖时请删除无关内容,谢谢]

> 问一个弱弱的问题
> 
> wxpython和pygtk相比,有什么区别?
> 
> 我在google上找到这样一段话,
> 
> If you run wxPython on top of some other toolkit, then you'll
> need that toolkit's runtimes instead of GTK.
> 
> 为什么gtk作runtime呢?

wxpython是wxWidgets的python binding,pygtk是GTK的python binding。这两个
都是跨平台的UI包。

wxWidgets不自己绘制控件,而是直接使用运行平台提供的控件,因此有"native
look and feel"。在X下,它使用GTK作为底层运行平台,称为wxGTK,因此需要安
装GTK运行时库才能运行wxWidgets程序。在Windows下,它使用win32作为底层运行
平台,称为wxMSW。另外还有在MacOS上的wxMAC。

GTK则是一个独立的UI包,它自己绘制一切界面元素。因此在各个平台上,它的
look&feel;都是一样的。

> 还有,pygtk和wxpython这些东西现在主要作什么阿?

它们都是用来做python程序的图形界面的:)


-- 
Qiangning Hong, Registered Linux User #396996
My Blog: http://www.hn.org/hongqn
RSS: http://feeds.feedburner.com/hongqn


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 12:28

大熊 bearsprite at gmail.com
Tue Nov 15 12:28:53 HKT 2005

2005/11/15, Qiangning Hong <hongqn at gmail.com>:

> wxpython是wxWidgets的python binding,pygtk是GTK的python binding。这两个
> 都是跨平台的UI包。
>
> wxWidgets不自己绘制控件,而是直接使用运行平台提供的控件,因此有"native
> look and feel"。在X下,它使用GTK作为底层运行平台,称为wxGTK,因此需要安
> 装GTK运行时库才能运行wxWidgets程序。在Windows下,它使用win32作为底层运行
> 平台,称为wxMSW。另外还有在MacOS上的wxMAC。
>
> GTK则是一个独立的UI包,它自己绘制一切界面元素。因此在各个平台上,它的
> look&feel;都是一样的。
>
> > 还有,pygtk和wxpython这些东西现在主要作什么阿?
>
> 它们都是用来做python程序的图形界面的:)
>
>
> --
> Qiangning Hong, Registered Linux User #396996
> My Blog: http://www.hn.org/hongqn
> RSS: http://feeds.feedburner.com/hongqn


补充一下,GTK在windows下的移植,基于GTK-Wimp ("Windows impersonator")主题时,现在也使用win32
native api绘制控件了,pygtk for win32 似乎默认也使用了这个主题

--
茫茫人海,你是我的最爱
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051115/734fc63d/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 13:21

风向标-Vane vaneoooo at gmail.com
Tue Nov 15 13:21:51 HKT 2005

大哥.由您参与的帖子无一不断裂
能否行个方便呢?

在 05-11-14,amingsc<amingsc at 163.com> 写道:
> 装个wxpython demo吧
> 那里面有详尽的例子和文档的
>
> 在 2005年11月14日 星期一 16:42,mydooom 写道:
> > LIMODOU把你的WXPYTHON的文档给我一个吧,谢谢
> >
> > 在05-11-14,limodou <limodou at gmail.com> 写道:
> >
> > > 在 05-11-14,Guofeng Yuan<loocoo at gmail.com> 写道:
> > >
> > > > self.tree.AppendItem(self.root,"3d统计图",1001)
> > > >
> > > > 如何在SelChanged 事件中得到 1001 这个数据呀?
> > >
> > > 你的调用有问题呀,文档上说:
> > >
> > > wxTreeItemId AppendItem(const wxTreeItemId& parent, const wxString&
> > > text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL)
> > >
> > > 因为你没有使用key argument,因此第三个参数是image,也就是图片的索引。是这样吗?
> > > 如果是想得到图片索引可以使用 GetItemImage(item, wx.TreeItemIcon_Normal)
> > >
> > > 如果是一个附加数据,那么加入时,应该是:
> > >
> > > self.tree.AppendItem(self.root, '3d统计图", data=1001)
> > > 然后在事件中使用self.tree.GetPyData(item)即可。
> > >
> > >
> > > --
> > > I like python!
> > > My Blog: http://www.donews.net/limodou
> > > NewEdit Maillist: http://groups.google.com/group/NewEdit
> > >
> > > _______________________________________________
> > > Python中文技术讨论邮件列表
> > > 发言: 发邮件到 python-chinese at lists.python.cn
> > > 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> > > 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> > > 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到  python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 15:17

mydooom mydooom at gmail.com
Tue Nov 15 15:17:15 HKT 2005

能具体说说怎么在程序中装载呢,谢谢

在05-11-15,limodou <limodou at gmail.com> 写道:
>
> 在 05-11-15,mydooom<mydooom at gmail.com> 写道:
> > 对了。里面有个XRCed工具。。有了界面如何生成PY代码呢?
> >
>
>
> 那个东西生成的是xml代码,需要在wxPython程序中进行装载,不需要生成py代码。有一个叫iPodder的程序就是这样来生成界面的。NewEdit中也用到了,但做了扩展,可能看起来并不方便。
>
> --
> I like python!
> My Blog: http://www.donews.net/limodou
> NewEdit Maillist: http://groups.google.com/group/NewEdit
>
> _______________________________________________
> Python中文技术讨论邮件列表
> 发言: 发邮件到 python-chinese at lists.python.cn
> 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn
> 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn
> 详细说明: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051115/5ce5132c/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年11月15日 星期二 15:28

limodou limodou at gmail.com
Tue Nov 15 15:28:32 HKT 2005

在 05-11-15,mydooom<mydooom at gmail.com> 写道:
> 能具体说说怎么在程序中装载呢,谢谢

看wxPython的demo中xmlresource的例子就有。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号