On 4月19日, 下午2时18分, zaheer.ag...@gmail.com wrote:
> hi
>
> I am from java background, I have written some code that actually
> works :)
> Need to some one to look at it and tell me if there are better ways of
> doing same things
>
> Will some one help?
>
> Thanks
Post first, then someone will revie
On 4月18日, 下午9时40分, 书虫 wrote:
> In wxPython, after I create a wx.Frame, I want to create a modeless
> and unclosed dialog. Here is my step:
>
> app = wx.PySimpleApp()
> f = wx.Frame(None, -1, "Test")
> d = wx.Dialog(f, -1, "Test Dialog", style = wx.CAPTION)
> f.Show()
> d.Show()
> app.MainLoop()
>