17 lines
230 B
Python
17 lines
230 B
Python
"""
|
|
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()
|