class LoginWindow: def init(self, master): self.master = master self.master.title("BL 製造表單點檢系統") self.master.geometry("300x250+400+250") self.master.resizable(0, 0) self.username = tk.StringVar() self.password = tk.StringVar() ttk.Label(self.master, text="賬號:", width=10).grid(row=0, column=0, padx=5, pady=5) ttk.Entry(self.master, textvariable=self.username, width=20).grid(row=0, column=1, columnspan=1, padx=5, pady=5) ttk.Label(self.master, text="密碼:", width=10).grid(row=1, column=0, padx=5, pady=5) ttk.Entry(self.master, textvariable=self.password, show="*", width=20).grid(row=1, column=1, columnspan=1, padx=1, pady=1) style = ttk.Style() style.configure("TButton", background="#4CAF50", foreground="white", font=("Helvetica", 12), width=10) ttk.Button(self.master, text="確認", command=self.login, style="TButton").grid(row=2, column=1, columnspan=1, padx=5, pady=5) # 设置列的宽度 self.master.grid_columnconfigure(0, weight=1) self.master.grid_columnconfigure(1, weight=1) self.master.grid_columnconfigure(2, weight=1) def login(self): if self.username.get() == "smt" and self.password.get() == "bl": self.master.destroy() root = tk.Tk() app = ExcelApp(root) root.mainloop() else: messagebox.showwarning("Invalid Credentials", "密碼或賬號錯誤.")這個代碼中爲什麽按鈕和文本框寫的代碼寫的間隔很久,爲什麽實際運行后間隔很開
时间: 2024-04-28 11:20:16 浏览: 76
这个代码中的间隔是通过 padx 和 pady 参数来设置的,这些参数控制了控件之间的水平和垂直间距。在实际运行时,间隔可能看起来比代码中设置的间隔更大,这可能是因为你的操作系统或者窗口管理器对控件进行了额外的布局或者样式处理,导致控件之间的间隔变大了。你可以尝试调整参数来调整控件之间的间隔,或者使用其他布局方式来控制控件之间的位置和间距。
阅读全文