返回顶部
首页 > 资讯 > 后端开发 > Python >Python tkinter 多选按钮控件 Checkbutton方法
  • 368
分享到

Python tkinter 多选按钮控件 Checkbutton方法

2024-04-02 19:04:59 368人浏览 独家记忆

Python 官方文档:入门教程 => 点击学习

摘要

目录1.多选按钮的方法1.2select()1.2 deselect()1.3 flash()1.4 invoke()1.5 toggle()1.多选按钮的方法 以下为常用的方法:

1.多选按钮的方法

以下为常用的方法:

方法描述deselect()清除多选按钮选中选项。flash()在激活状态颜色和正常颜色之间闪烁几次多选按钮,但保持它开始时的状态。invoke()可以调用此方法来获得与用户单击多选按钮以更改其状态时发生的操作相同的操作select()设置多选按钮为选中。toggle()选中与没有选中之间切换

1.2select()

设置某一个多选按钮为选中的状态,可以通过select()指定特定的单选按钮被选中。

import tkinter as tk
root=tk.Tk()
root.geometry('300x240')
b1 = tk.Checkbutton(root,bg='red',text='红色',bd=5)
b1.pack()
b2 = tk.Checkbutton(root,text='蓝色',bg='blue',bd=5)
b2.pack()
b3 = tk.Checkbutton(root,text='绿色',bg='green',bd=5)
b3.pack()
b2.select()
root.mainloop()

结果:

1.2 deselect()

跟select方法是相反的操作,取消某个单选按钮被选中。

import tkinter as tk
root=tk.Tk()
root.geometry('300x240')

b1 = tk.Checkbutton(root,bg='red',text='红色',bd=5)
b1.pack()
b2 = tk.Checkbutton(root,text='蓝色',bg='blue',bd=5)
b2.pack()
b3 = tk.Checkbutton(root,text='绿色',bg='green',bd=5)
b3.pack()

def deselect():
    b2.deselect()
b4=tk.Button(root,text='取消蓝色',command=deselect)
b4.pack()

root.mainloop()

结果:

1.3 flash()

在激活状态颜色和正常颜色之间闪烁几次多选按钮,但保持它开始时的状态。必须设置activeforeground或者activebackground中的任何一个或者全部,否则没有效果。注意只有被选中的按钮才会起作用。

import tkinter as tk
root=tk.Tk()
root.geometry('300x240')
check=[tk.StringVar(),tk.StringVar(),tk.StringVar()]
for i in range(0,3):
    check[i].set("0")
b1 = tk.Checkbutton(root,bg='red',text='红色',bd=5,
                    variable=check[0],activebackground='green',
                    activeforeground='yellow')
b1.pack()
b2 = tk.Checkbutton(root,text='蓝色',bg='blue',bd=5,
                    variable=check[1],activebackground='red',
                    activeforeground='yellow')
b2.pack()
b3 = tk.Checkbutton(root,text='绿色',bg='green',bd=5,
                    variable=check[2],activebackground='blue',
                    activeforeground='yellow')
b3.pack()

def flash():
    if check[0].get()=="1":
        b1.flash()
    if check[1].get()=="1":
        b2.flash()
    if check[2].get()=="1":
        b3.flash()

b4=tk.Button(root,text='Flash',command=flash)
b4.pack()
root.mainloop()

1.4 invoke()

模拟多选按钮被选中的情况。

import tkinter as tk
root=tk.Tk()
root.geometry('300x240')

b1 = tk.Checkbutton(root,bg='red',text='红色',bd=5)
b1.pack()
b2 = tk.Checkbutton(root,text='蓝色',bg='blue',bd=5)
b2.pack()
b3 = tk.Checkbutton(root,text='绿色',bg='green',bd=5)
b3.pack()

def invoke():
    b2.invoke()
b4=tk.Button(root,text='Invoke',command=invoke)
b4.pack()

root.mainloop()

结果:

1.5 toggle()

切换多选按钮的状态。如果目前是选中的状态,则变为未选中。反之亦然。toggle()的效果也invoke()是一样的。

import tkinter as tk
root=tk.Tk()
root.geometry('300x240')

b1 = tk.Checkbutton(root,bg='red',text='红色',bd=5)
b1.pack()
b2 = tk.Checkbutton(root,text='蓝色',bg='blue',bd=5)
b2.pack()
b3 = tk.Checkbutton(root,text='绿色',bg='green',bd=5)
b3.pack()

def toggle():
    b2.toggle()
b4=tk.Button(root,text='Toggle',command=toggle)
b4.pack()

root.mainloop()

结果:

到此这篇关于python tkinter 多选按钮控件 Checkbutton方法的文章就介绍到这了,更多相关Pytho Checkbutton 内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: Python tkinter 多选按钮控件 Checkbutton方法

本文链接: https://lsjlt.com/news/119718.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作