c语言sscanf函数的用法是什么
239
2022-11-30
选中按钮上色
from tkinter import Label, Tk,Listbox,StringVar,Buttonfrom functools import partialfrom click import commandmain_win = Tk()main_win.title('h')width = 300 height = 300 main_win.geometry(f'{width}x{height}')#选中的按钮上色def get_selected_modle(e): bindex=0 for k,v in main_win.children["!listbox"].children.items(): if e==bindex: v.config(bg='green') else: v.config(bg='white') bindex+=1 print(e)modle_list=Listbox(main_win, bg='white', bd=10, cursor='cross', listvariable="", selectmode='single')modle_list.pack(side="left")for i ,name in enumerate(["m{}".format(i) for i in range(100)]): confirm_button=Button(modle_list,text=name,command=partial(get_selected_modle,i)) confirm_button.pack(side="top")# title_label=Label(main_win,text="model") main_win.mainloop()
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~