This commit is contained in:
2025-01-14 17:15:30 +08:00
parent fbf87d620c
commit 2d1176292e
12 changed files with 8086 additions and 8042 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ class App:
def create_widgets(self):
tk.Label(self.root, text="加密密码:").grid(row=0, column=0, padx=5, pady=5)
tk.Entry(self.root, textvariable=self.password, width=30).grid(row=0, column=1)
tk.Entry(self.root, textvariable=self.password, width=30).grid(row=0, column=1, padx=(0, 10))
tk.Button(self.root, text="解密", command=self.decrypt_password).grid(row=1, column=1, pady=10)