1 Star 0 Fork 6

Evgenii/tkinter界面展示

forked from cheney/tkinter界面展示 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_advanced_widgets.py 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
cheney 提交于 2021-08-25 11:05 +08:00 . New: canvas
from win import Win
from advanced_widgets import *
# some functions are not testing myself, if any bugs please fix first then run again
# it should be a minor problem
def test_Toplevel():
toplevel = ToplevelCustom()
toplevel.resource_set_test()
toplevel.methods_entry_test()
def test_PanedWindow():
pw = PanedWindowCustom()
pw.resource_set_test()
pw.methods_entry_test()
def test_Listbox():
lb = ListboxCustom()
lb.resource_set_test()
lb.methods_entry_test()
def test_Spinbox():
sb = SpinboxCustom()
sb.resource_set_test()
sb.methods_entry_test()
def test_Textbox():
tx = TextboxCustom()
tx.resource_set_test()
tx.methods_entry_test()
def test_ScrolledTextbox():
tx = ScrolledTextCustom()
tx.resource_set_test()
tx.methods_entry_test()
def test_BitmapImagetbox():
image = BitmapImageCustom()
def test_PhotoImagetbox():
image = PhotoImageCustom()
def test_Canvasbox():
canvas = CanvasCustom()
canvas.resource_set_test()
canvas.methods_entry_test()
if __name__ == '__main__':
test_Toplevel()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/evgenii/tkinter-interface-display.git
git@gitee.com:evgenii/tkinter-interface-display.git
evgenii
tkinter-interface-display
tkinter界面展示
master

搜索帮助