使用来自其他 class tkinter python 的变量

Using a variable from an other class tkinter python

我正在使用 Tkinter(使用 python)创建一个 UI。如何在另一页(即另一个 class)上使用一个页面中的条目(定义用户名)? 基本上,我需要用户名出现在几个页面上,而不是每次都要求用户输入。

你可以把它设为全局变量。

global password
password_entry = tk.Entry(screen1, show="*", textvariable=password)

然后在程序的任何地方使用它

我不知道你有没有包含用户名的数据库。如果是的话,你可以从那里得到它。 如果没有,那么您可以使用全局变量来保留用户名。

global username
username = textbox.get("1.0","end")