Re: wxPython Boxsizers

2014-11-06 Thread Joy Deep
I am using Python 2.7.6 Here is the code I am trying: import wx class MyFrame(wx.Frame): def __init__(self, *args, **kid's): wx.Frame.__init__(self, *args, **kwds) self.button_1 = wx.Button(self, wx.ID_ANY, "button_1") self.button_2 = wx.Button(self, wx.ID_ANY, "button

Re: wxPython Boxsizers

2014-11-06 Thread Mark Lawrence
On 06/11/2014 10:13, Jaydip Chakrabarty wrote: Hello, I am new to Python. I am learning boxsizer. I want to put two buttons on my panel. One at top right corner and one at bottom right corner. How do I achieve this? Thanks Probably best asked here https://groups.google.com/forum/#!forum/wxp

Re: wxPython Boxsizers

2014-11-06 Thread Joel Goldstick
On Thu, Nov 6, 2014 at 5:13 AM, Jaydip Chakrabarty wrote: > Hello, > > I am new to Python. I am learning boxsizer. I want to put two buttons on > my panel. One at top right corner and one at bottom right corner. How do > I achieve this? > > Thanks First, what version of python. What is boxsizer?

wxPython Boxsizers

2014-11-06 Thread Jaydip Chakrabarty
Hello, I am new to Python. I am learning boxsizer. I want to put two buttons on my panel. One at top right corner and one at bottom right corner. How do I achieve this? Thanks -- https://mail.python.org/mailman/listinfo/python-list