Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
GUI.py 527 Bytes
Copy Edit Raw Blame History
muyoo authored 2020-06-10 14:05 . 首次推送
from tkinter import *
root = Tk()
screenWidth = root.winfo_screenwidth()
screenHeight = root.winfo_screenheight()
w=600
h=300
x=(screenWidth-w)/2
y=(screenHeight-h)/3
root.title("RPG maker MV 翻译向导")
root.geometry("%dx%d+%d+%d"%(w,h,x,y))
title=Label(root,text="1/5 选择游戏文件",anchor="w",font="yahei 13 bold",bg="white",fg="gray",padx=10,pady=10)
title.pack(fill=X)
content=Frame(root)
lab1=Label(content,text="游戏根目录")
lab1.pack()
ent1=Entry(content)
ent1.pack()
content.pack(fill=X
)
root.mainloop()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化