How to use chinese unicode in Wxpython?

Hi guys,

I plan to work on some project with wxpython in Chinese language?

But I am not sure if wxpython can surpport Chinese language, anyone can give me some suggest? Thanks

fengxuanshuo

···

Hello,

Hi guys,

I plan to work on some project with wxpython in Chinese language?

But I am not sure if wxpython can surpport Chinese language, anyone can give me some suggest? Thanks

Yes you can use Chinese or almost any other language in a wxPython program. You will need to ask a more specific question to get a better answer, but see the demo for examples and here is another one.

encoding: utf-8

import wx

app = wx.App(False)

wx.MessageBox(u"おはようございます", “Japanese Example”)

p.s) your email is almost impossible to read, please use plain text emails. Putting off-white text on a white backround just doesn’t work ;).

Cody

···

On Jun 18, 2009, at 4:52 AM, usr.root wrote: