qin_yin 发表于 2020-11-26 21:38:57

tk对象方法问题

import tkinter as tk

root = tk.Tk()
root.title('This my fifth Tk')
root.geometry('300x300')

var = tk.StringVar()
var.set('You Are Here')

label = tk.Label(master=root, text='You Are Here')   
label.pack()


def get_position(v):
    label.config(text='You Are Here %d'% scale.get())   

scale = tk.Scale(master=root, from_=0, to=100, orient='horizontal', length=200, tickinterval=20,
               command=get_position)
scale.pack()

root.mainloop()

--------------------------------------------------分割线-----------------------------------------------------

import tkinter as tk

root = tk.Tk()
root.title('This is My Tk')
root.geometry('300x300')

label = tk.Label(master=root, text='I don`t like it ', bg='yellow', width=20, height=4, font=('微软雅黑', 15)).pack()

def print_choice():
    if var1 and var2:
      label.config(text='I like it all')      

    elif var1:
      label.config(text='I like python')

    elif var2:
      label.config(text='I live C++')


var1 = tk.StringVar()
var2 = tk.StringVar()
py_button = tk.Checkbutton(master=root, text='Pyhton',width=20, height=4, font=('微软雅黑', 15,),
                           variable=var1, command=print_choice).pack()
C_button = tk.Checkbutton(master=root, text='C++', width=20,height=4, font=('微软雅黑',15),
                        variable=var2, command=print_choice).pack()

root.mainloop()

问题
为什么第一段代码函数可以使用cconfig方法修改label对象的text参数
而第二段代码不能使用config方法修改label对象的text参数,反而提示:'NoneType' object has no attribute 'config

Twilight6 发表于 2020-11-26 21:53:52

本帖最后由 Twilight6 于 2020-11-26 21:55 编辑


第一段代码:

label = tk.Label(master=root, text='You Are Here')   
label.pack()

第二段代码:

label = tk.Label(master=root, text='I don`t like it ', bg='yellow', width=20, height=4, font=('微软雅黑', 15)).pack()

因为布局管理器是自动调整好组件大小,位置等功能,并不返回任何值,所以你第二个代码 label 的值是 None

而 None 自然没有 config 方法,导致报错

qin_yin 发表于 2020-11-26 22:23:48

Twilight6 发表于 2020-11-26 21:53
第一段代码:




感谢
页: [1]
查看完整版本: tk对象方法问题