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.

5 lines
359 B

from MySQL import t1 #从 MySQL 模块导入t1
if __name__=='__main__': #当前的文件作为主程序运行
app = t1.MyApp() #创建了一个名为 app 的对象,该对象是 t1 组件中 MyApp 类的一个实例,初始化一个应用程序
app.MainLoop() #应用程序的事件循环,使窗口保持打开并能够响应用户操作