Python论坛  - 讨论区

标题:Re: Re: [python-chinese] 请教-- 想模仿Google 软件的GUI风格

2006年05月19日 星期五 22:39

CHAOS chaoszhuo at gmail.com
Fri May 19 22:39:10 HKT 2006

真的么?网页的编程没搞过,不懂

在06-5-19,赵威 <python23 at 163.com> 写道:
>
> 费振华,您好!
>  感觉应该是用的HTML实现的,在wxpython中也有支持wxHtml*的class,
> 只是它所支持的html只能算是标准的html的一个子集:
>
>  1. 不支持背景图片,这样还不得不在表格里嵌入图片而不能使用图片背景,而且此单元格不能被拉伸,不然图片可就遮不住单元格了。
> 2. 尽量不要在表格中将单元格拆分为有横排有竖排的,这样做,结果是很多单元格无法控制他们的宽度,所以应该让表格尽量的简单,然后在表格中套表格。
> 3. 不要使用CSS,不支持的。
> 4. JavaScript也是不支持的。
>
> 如果在windows上到是可以使用IE的某些控件,据说msn就是这样搞出来的。
>
> ======== 2006-05-18 22:29:03 您在来信中写道: ========
>
>
> 我也想学习GTALK的界面,,感觉简洁完美,谁熟悉的能帮下忙么
>
> 2006/5/18, CHAOS <chaoszhuo at gmail.com>:
> >
> > 多谢回应,但其实不是这么简单。
> >
> > 一些动作和POSTURE的转换都不是皮肤能解决的。
> >
> > 2006/5/18, yi huang < yi.codeplayer at gmail.com>:
> >
> > > 找一组支持皮肤的GUI组件。或者自己写。
> > >
> > >  On 5/17/06, CHAOS < chaoszhuo at gmail.com> wrote:
> > >
> > > >  请教一个问题,如果我想模仿GOOGLE软件,如Google Talk,的风格写Python软件,怎么入手?有什么好工具么?
> > > 如果用其他语言呢?
> > >
> > > Chaos
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request at lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> > >
> > >
> > > --
> > > http://codeplayer.blogbus.com/
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request at lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
>  = = = = = = = = = = = = = = = = = = = = = =
>
>> 礼!
>
>  赵威
>  python23 at 163.com
>  2006-05-19
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060519/cc8d2c2d/attachment.html

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

2006年05月23日 星期二 10:37

周旋 elvis827 at gmail.com
Tue May 23 10:37:03 HKT 2006

如果用HTML,可以这样实现,
做一个网页,将所有鼠标点击需要响应的元素加上链接,链接地址设置成自己的命令格式,然后在包含IWebBrowser2控件的窗口里处理DISPID_BEFORENAVIGATE2事件,将链接地址解析为命令进行相关处理并取消重定向就行了。

2006/5/19, CHAOS <chaoszhuo at gmail.com>:
>
> 真的么?网页的编程没搞过,不懂
>
> 在06-5-19,赵威 <python23 at 163.com> 写道:
>
> >  费振华,您好!
> >  感觉应该是用的HTML实现的,在wxpython中也有支持wxHtml*的class,
> > 只是它所支持的html只能算是标准的html的一个子集:
> >
> >  1. 不支持背景图片,这样还不得不在表格里嵌入图片而不能使用图片背景,而且此单元格不能被拉伸,不然图片可就遮不住单元格了。
> > 2. 尽量不要在表格中将单元格拆分为有横排有竖排的,这样做,结果是很多单元格无法控制他们的宽度,所以应该让表格尽量的简单,然后在表格中套表格。
> > 3. 不要使用CSS,不支持的。
> > 4. JavaScript也是不支持的。
> >
> > 如果在windows上到是可以使用IE的某些控件,据说msn就是这样搞出来的。
> >
> > ======== 2006-05-18 22:29:03 您在来信中写道: ========
> >
> >
> > 我也想学习GTALK的界面,,感觉简洁完美,谁熟悉的能帮下忙么
> >
> > 2006/5/18, CHAOS <chaoszhuo at gmail.com>:
> > >
> > > 多谢回应,但其实不是这么简单。
> > >
> > > 一些动作和POSTURE的转换都不是皮肤能解决的。
> > >
> > > 2006/5/18, yi huang < yi.codeplayer at gmail.com>:
> > >
> > > > 找一组支持皮肤的GUI组件。或者自己写。
> > > >
> > > >  On 5/17/06, CHAOS < chaoszhuo at gmail.com> wrote:
> > > >
> > > > >  请教一个问题,如果我想模仿GOOGLE软件,如Google Talk,的风格写Python软件,怎么入手?有什么好工具么?
> > > > 如果用其他语言呢?
> > > >
> > > > Chaos
> > > >
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese at lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request at lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > > http://codeplayer.blogbus.com/
> > > >
> > > > _______________________________________________
> > > > python-chinese
> > > > Post: send python-chinese at lists.python.cn
> > > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > > Unsubscribe: send unsubscribe to
> > > > python-chinese-request at lists.python.cn
> > > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > > >
> > > >
> > >
> > >
> > > _______________________________________________
> > > python-chinese
> > > Post: send python-chinese at lists.python.cn
> > > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > > Unsubscribe: send unsubscribe to
> > > python-chinese-request at lists.python.cn
> > > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> > >
> > >
> >  = = = = = = = = = = = = = = = = = = = = = =
> >
> > 致
> > 礼!
> >
> >  赵威
> >  python23 at 163.com
> >  2006-05-19
> >
> >
> > _______________________________________________
> > python-chinese
> > Post: send python-chinese at lists.python.cn
> > Subscribe: send subscribe to python-chinese-request at lists.python.cn
> > Unsubscribe: send unsubscribe to
> > python-chinese-request at lists.python.cn
> > Detail Info: http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060523/e90bc274/attachment.html

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号