问题标签 [tkinter]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
13 回答
195576 浏览

python - 使用 Python 创建可直接执行的跨平台 GUI 应用程序

Python 可以在多个平台上工作,并且可以用于桌面和 Web 应用程序,因此我得出结论,有一些方法可以将它编译成 Mac、Windows 和 Linux 的可执行文件。

问题是我不知道从哪里开始或如何用它编写 GUI,任何人都可以对此有所了解并指出正确的方向吗?

0 投票
2 回答
1532 浏览

python - How to know whether a window with a given title is already open in Tk?

I’ve writen a little python script that just pops up a message box containing the text passed on the command line. I want to pop it up only when the window —resulting from a previous call— is not open.

Any idea how to check that?

0 投票
2 回答
35166 浏览

python - 在 Python 中更改 Tkinter 按钮的命令方法

我创建了一个新的 Button 对象,但没有command在创建时指定选项。Tkinter 有没有办法在创建对象后更改命令(onclick)功能?

0 投票
7 回答
57133 浏览

python - 如何捆绑包含依赖项的 Python 应用程序?

我需要将我的 Python 应用程序、它的依赖项和 Python 打包到一个 MSI 安装程序中。最终结果最好是:

  • Python 安装在标准位置
  • 包及其依赖项安装在单独的目录中(可能是站点包)
  • 安装目录应包含未压缩的 Python,并且不需要独立的可执行文件
0 投票
17 回答
362566 浏览

python - 如何关闭 tkinter 窗口?

如何结束 Tkinter 程序?假设我有这个代码:

我应该如何定义quit退出我的应用程序的函数?

0 投票
9 回答
200168 浏览

python - How do I handle the window close event in Tkinter?

How do I handle the window close event (user clicking the 'X' button) in a Python Tkinter program?

0 投票
2 回答
9508 浏览

python - 如何在 tkinter 中找出 Canvas 文本对象的大小?

我想在画布中创建一些文本:

现在我如何找到的宽度和高度myText

0 投票
4 回答
2973 浏览

python - 如何使用 Tkinter 包几何管理器重叠小部件?

我想Canvas在我的窗口中放置一个带有图像的图像,然后我想在它上面打包小部件,所以 Canvas 充当背景。

管理器是否可以有两种状态pack:一种用于一组小部件,另一种用于另一组?

0 投票
2 回答
2764 浏览

python - 如何更新 Tix.ComboBox 的文本?

我有一个带有可编辑文本字段的 Tix.ComboBox。如何强制保存文本值的变量更新?

让我做一个更具体的解释。我有一个组合框和一个按钮。当我单击该按钮时,它会弹出一个带有组合框值的消息框。假设组合框文本字段当前的值为“thing1”。如果我在框中输入“new”,然后用鼠标单击按钮,它将弹出消息“thing1”。如果我在框中键入“新”,然后将焦点从组合框移开,然后单击按钮,弹出消息会显示“新”。

我如何强制组合框将其值更新为新的而不需要我从组合框上移开标签?

我已经包含了示例代码。

0 投票
3 回答
2130 浏览

python - 在 Tkinter 中获取绑定事件处理程序

在将方法绑定到 Tkinter 元素的事件之后,有没有办法恢复该方法?