You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
326 B
17 lines
326 B
6 months ago
|
import tkinter as tk
|
||
|
from ui import create_main_menu
|
||
|
|
||
|
def main():
|
||
|
# 创建主窗口
|
||
|
root = tk.Tk()
|
||
|
root.title("角色控制系统")
|
||
|
root.geometry("300x200")
|
||
|
|
||
|
# 创建主菜单界面
|
||
|
create_main_menu(root)
|
||
|
|
||
|
# 运行主循环
|
||
|
root.mainloop()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|