Tkinter中的Notebook控件相当于Windows中的TabCtrl控件,可以让用户在多可控件布局之间进行切换,下面到视频就是在Demo1,Demo2之间进行切换的例子:
由于本例中大量使用了前面两篇文章的代码,这里不再重复了,只给出Notebook相关的部分。
首先是构建Notebook对象:
notebook = Notebook(root)
notebook.grid(row=0, column=0)
接下来构建一个Frame控件用以管理第一个页面的控件。
tab1 = Frame(notebook)
s_frame = LabelFrame(tab1, text='Standard Button')
s_frame.grid(row=0, column=0)
s_button = Button(s_frame, text='Button', width=12)
s_button.grid(row=0, column=0)
# 此处省略约50行代码
notebook.add(tab1, text='Demo1')
等所有控件都添加到Frame对象tab1之后,调用add方法将其添加到notebook对象上。
第二个Tab也一样:
tab2 = Frame(notebook)
p_value = IntVar()
p_value.set(0)
progress = Progressbar(tab2, maximum=100, variable=p_value)
progress.grid(row=1, column=0, columnspan=3, sticky='ew')
# 此处省略约30行代码
notebook.add(tab2, text='Demo2')
完整代码可以从以下地址下载:
https://github.com/xueweiguo/TkinterPrimer/blob/master/Sample/29%20Notebook.py
觉得本文有帮助?请分享给更多人。
阅读更多更新文章,请关注微信公众号【面向对象思考】
转载:https://blog.csdn.net/craftsman1970/article/details/102593182
查看评论