Re: TKinter Frame Size automatic

2012-06-28 Thread Terry Reedy
On 6/28/2012 9:07 AM, hkara...@gmail.com wrote: I have a question about the frame size. I want to create Tabbed window. There will be one Window and tabs in this window. The page will be displayed whenever the user press the corresponding tab. This is simple NoteBook behaviour from Tkinter. I do

TKinter Frame Size automatic

2012-06-28 Thread hkaratoy
I have a question about the frame size. I want to create Tabbed window. There will be one Window and tabs in this window. The page will be displayed whenever the user press the corresponding tab. This is simple NoteBook behaviour from Tkinter. I do not want to set the master window size but I wa

Re: Tkinter Frame Size

2005-10-28 Thread James Stroud
On Friday 28 October 2005 11:00, Tuvas wrote: > Okay. I have alot of items that are put on the basic frame already, > using a grid method. Will this change anything? It shouldn't. For example from Tkinter import * app = Tk() app.geometry("%dx%d%+d%+d" % (600, 400, 0, 0)) f = Frame(app) f.pack() L

Re: Tkinter Frame Size

2005-10-28 Thread Tuvas
Okay. I have alot of items that are put on the basic frame already, using a grid method. Will this change anything? -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter Frame Size

2005-10-28 Thread James Stroud
On Friday 28 October 2005 10:38, Tuvas wrote: > I'm tyring to set the size of the window that is opened when you open a > Tkinter window, without much sucess. I have tried changing the heigth > and width atributes, but it doesn't do anything. I tried using the > grid_propagate command that I saw

Tkinter Frame Size

2005-10-28 Thread Tuvas
I'm tyring to set the size of the window that is opened when you open a Tkinter window, without much sucess. I have tried changing the heigth and width atributes, but it doesn't do anything. I tried using the grid_propagate command that I saw to use, but made the window even smaller... What can I d