first commit

This commit is contained in:
2026-07-18 15:04:19 +08:00
commit 7fdcab3405
26 changed files with 2749 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
cwExcel - Python Desktop Application
入口模块
"""
import tkinter as tk
from app import MainApplication
def main():
root = tk.Tk()
app = MainApplication(root)
app.run()
if __name__ == "__main__":
main()