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
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
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
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
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
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