python tkinter combobox如何获取选中的值
时间: 2024-05-15 14:13:34 浏览: 240
选择一个选项后可以返回一个值的ComboBox
4星 · 用户满意度95%
可以使用 `combobox.get()` 方法来获取当前选中的值。
以下是一个简单的示例代码:
```python
import tkinter as tk
from tkinter import ttk
def on_select(event):
selected_value = combobox.get()
print(selected_value)
root = tk.Tk()
options = ["Option 1", "Option 2", "Option 3"]
combobox = ttk.Combobox(root, values=options)
combobox.pack()
combobox.bind("<<ComboboxSelected>>", on_select)
root.mainloop()
```
在上面的示例中,我们使用 `combobox.bind` 方法将其与 `"<<ComboboxSelected>>"` 事件绑定起来。当用户选择新的选项时,`on_select` 函数将会被调用,并从 `combobox` 中获取当前选中的值并打印出来。
阅读全文