我正在使用python3的tkinter在GUI上進行操作。 對於一個框架,我想結果是這樣的: 但是當我使用此代碼嘗試:Tkinter按鈕在同一行,但有一個滾動文字2列
master.title("Homepage")
master.title("Window to check information")
master.geometry('%dx%d+%d+%d' % (850, 800, (master.winfo_screenwidth() - 850)/2, 0))
self.information = tkst.ScrolledText(self, wrap=tk.WORD, height=20, width=100)
self.btn1 = tk.Button(self, text='Cours', height=3, width=40)
self.btn2 = tk.Button(self, text='Absences', height=3, width=40)
self.btn3 = tk.Button(self, text='Notes', height=3, width=40)
self.btn4 = tk.Button(self, text='Return', height=3, width=40)
self.information.config(font=font.Font(size=15))
self.information.configure(background='#C0C0C0')
self.btn2.config(font=font.Font(size=12))
self.btn3.config(font=font.Font(size=12))
self.btn1.config(font=font.Font(size=12))
self.btn4.config(font=font.Font(size=12))
self.information.grid(row=0,column=0)
self.btn1.grid(row=1,column=0)
self.btn2.grid(row=1,column=1)
self.btn3.grid(row=2,column=0)
self.btn4.grid(row=2,column=1)
有人能幫助我如何能我寫網格或包的代碼來實現第一張照片?謝謝。
非常感謝。這就是我想要的XD – Minalinskey