简体   繁体   English

如何为 tkinter 中的小部件设置固定宽度和高度?

[英]How to set fixed width and height to widgets in tkinter?

As a Python newbie I have a problem with the text widget.作为 Python 新手,我的文本小部件有问题。

Whenever I try to increase the font size of the text widget, the width and height of it changes too.每当我尝试增加文本小部件的字体大小时,它的宽度和高度也会发生变化。

Here's the code:这是代码:

from tkinter import *
from tkinter import font

root = Tk()

fontsize = 16

def increase_font():
    global fontsize
    fontsize += 2
    textfont.config(size = fontsize)

textfont = font.Font(family = "consolas" , size = fontsize)
my_text = Text(root , width = 65 , height = 18 , font = textfont)
my_text.grid(row = 0 , column = 0)
my_text.insert(1.0 , "There is a problem")

my_button = Button(root , text = "Increase Font" , width = 13 , font = "arial 11" , command = increase_font)
my_button.grid(row = 1 , column = 0 , pady = 5)

mainloop()

However, this problem does not seem to occur when I:但是,当我:
1) Use tags in my program 1)在我的程序中使用标签
2) Change the font of my text 2)改变我的文字的字体

For example:例如:

def increase_font():
    global fontsize
    fontsize += 2
    my_text.tag_add("increase_size" , 1.0 , END) # using tags
    my_text.tag_config("increase_size" , font = f"consolas {fontsize}") # changing the font
    
    # Problem does not occur

Or或者

def increase_font():
    global fontsize
    fontsize += 2
    my_text.tag_add("increase_size", 1.0 , END) # using tags
    temp_font = textfont.copy() # creating a new font
    temp_font.config(size = fontsize)
    my_text.tag_config("increase_size" , font=temp_font) # changing the font

    # Problem does not occur

The thing is that I don't want to change the font of the text or create a new font, as it causes problems when I implement it on my original program.问题是我不想更改文本的字体或创建新字体,因为当我在原始程序上实现它时会导致问题。 All I want is to set a fixed width and height to my text widget(and it should never change no matter what I do with it).我想要的只是为我的文本小部件设置一个固定的宽度和高度(无论我用它做什么,它都不应该改变)。

This problem really frustrates me a lot and It would be a great help if anyone could fix this problem.这个问题真的让我很沮丧,如果有人能解决这个问题,那将是一个很大的帮助。

You can pack the Text widget in a Frame with fixed width and height and pack_propogate(0) :您可以将Text小部件pack在具有固定宽度和高度的Framepack_propogate(0)

from tkinter import *
from tkinter import font

root = Tk()

fontsize = 16

def increase_font():
    global fontsize
    fontsize += 2
    textfont.config(size=fontsize)

# frame for the text widget
container = Frame(root, width=600, height=400)
container.pack(fill="both", expand=1)
container.pack_propagate(0)

textfont = font.Font(family = "consolas" , size = fontsize)
# set the width and height of the Text widget to smallest values
# and let the layout manager to expand it
my_text = Text(container , width=1 , height=1 , font=textfont)
my_text.pack(fill="both", expand=1) # fill the parent frame
my_text.insert(1.0 , "There is a problem")

my_button = Button(root , text="Increase Font" , width=13 , font="arial 11" , command=increase_font)
my_button.pack(pady=5)

mainloop()

Update: Using grid() on the frame and button:更新:在框架和按钮上使用grid()

from tkinter import *
from tkinter import font

root = Tk()
root.grid_rowconfigure(0, weight=1)
root.grid_columnconfigure(0, weight=1)

fontsize = 16

def increase_font():
    global fontsize
    fontsize += 2
    textfont.config(size=fontsize)

# frame for the text widget
container = Frame(root, width=600, height=400)
container.grid(row=0, column=0, sticky="nsew", padx=5, pady=5)
container.pack_propagate(0)

textfont = font.Font(family = "consolas" , size = fontsize)
# set the width and height of the Text widget to smallest values
# and let the layout manager to expand it
my_text = Text(container , width=1 , height=1 , font=textfont)
my_text.pack(fill="both", expand=1) # fill the parent frame
my_text.insert(1.0 , "There is a problem")

my_button = Button(root , text="Increase Font" , width=13 , font="arial 11" , command=increase_font)
my_button.grid(row=1, column=0, pady=5)

mainloop()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM