1. 首页
  2. 数据库
  3. 其它
  4. 【tkinter模块04】多选框控件

【tkinter模块04】多选框控件

上传者: 2020-12-25 09:51:48上传 PDF文件 57KB 热度 12次
import tkinter # 创建主窗口 win = tkinter.Tk() # 设置标题 win.title('选择题') # 设置大小和位置,前两个x大小 后两个+位置 win.geometry('400x400+500+200') check1 = tkinter.Checkbutton(win, text='\u9009\u9879A') check1.pack() check2 = tkinter.Checkbutton(win, text='\u9009\u9879B') check2.pack() check3 = tkinter.Checkbutton(win, text
用户评论