PictureEdit/main.py
2025-09-04 12:58:13 +08:00

17 lines
265 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.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
作者:太一
微信taiyi1224
邮箱shuobo1224@qq.com
"""
import sys
import os
import tkinter as tk
from main_window import MainWindow
if __name__ == "__main__":
app = MainWindow()
app.mainloop()