英文: Python tkinter canvas flickering 问题 首先,我应该说明我已经意识到这个网站上有类似名称的其他帖子。我已经查看过它们,但据我所知,它们没有解决我的问题。实际上,...
Tkinter中的滚动条不可移动。
英文: Scrollbar in Tkinter not moveable 问题 我正在构建一个程序的初级阶段,可以从TreeView中获取项目并将它们移动到ListBox中。我已经为TreeView...
Coding a general function to: Disable a tkinter widget with a checkbutton
英文: Coding a general function to: Disable a tkinter widget with a checkbutton 问题 我正在尝试编写一个函数,根据复选框的值...
Python: tkinter中的get()方法不起作用
英文: Python: get() is not working on tkinter python 问题 这是我的代码: def enter(): if w.get() == 777: messag...
在函数内部更新一个全局的Python变量。
英文: Update a global python variable inside a function 问题 I have a function inside a method of a clas...
Tkinter嵌套框架使用类
英文: Tkinter Nested Frame using Classes 问题 我正在尝试构建一个带有主窗口的GUI,其中包含一个包含标头标签的嵌套框架(使用不同类创建)。 在下面的代码片段中,我...
Tkinter与openweather
英文: Tkinter with openweather 问题 I tried creating a dropdown box in Tkinter. I was hoping that every ...
我在Tkinter中遇到了网格管理和图像更改方面的困难。
英文: i am having difficulty in grid management and image changes in tkinter 问题 我想要创建一个剪刀石头布游戏,并使用tkin...
如何将类内部的函数作为菜单按钮的命令引用?
英文: How do I reference a function that is within the class as a command for a menu button? 问题 这是代码: ...
在tkinter中如何在长时间运行的任务期间更改光标。
英文: How to change the cursor during a long-running task in tkinter 问题 我的应用程序包含一些由按钮点击触发的长时间运行的任务。我希望...
29