Files
sfgrid/starter.py
T
2025-12-05 17:43:13 +08:00

12 lines
384 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# coding:utf-8
import tkinter as tk
from core.main_entry import MainEntry
# 这是应用的启动入口程序,负责初始化并启动主窗口。
# 它创建一个Tkinter根窗口,实例化主窗口类MainBoardWindow
# 并调用其run方法启动主事件循环。
if __name__ == "__main__":
import tkinter as tk
root = tk.Tk()
app = MainEntry(root)
app.run()