前提・実現したいこと
tkinterでスクロールバー付きCanvasでリストボックスのようなウィジットを作っています。
発生している問題・エラーメッセージ
CanvasをクリックするとCanvasの枠線のようなものが表示されてしまいます。 これを表示させないようにするにはどうすればいいでしょうか?
該当のソースコード
python
1from tkinter import * 2 3 4 5class TestScroll(Frame): 6 def __init__(self, master=None): 7 Frame.__init__(self, master) 8 9 10 self.master.title("TwitterApp") 11 self.master.geometry("400x300") 12 self.frame = Frame(self.master, width=400, height=350) 13 self.frame.place(x=0, y=0) 14 15 self.list_height = 200 16 17 self.canvas = Canvas(self.frame, width=180, height=200, bg='white', bd=4) 18 self.frame_ch = Frame(self.canvas, width=180, height=self.list_height) 19 self.scrollbar = Scrollbar(self.frame, orient="vertical", \ 20 command=self.canvas.yview) 21 self.canvas.configure(yscrollcommand=self.scrollbar.set) 22 self.scrollbar.place(x=172, y=75, height=self.list_height+4) 23 self.canvas.place(x=5, y=75) 24 self.canvas.create_window((0,0), window=self.frame_ch, anchor='nw') 25 self.frame_ch.bind("<Configure>", self.canvas_config) 26 27 text_list = [] 28 for n in range(20): 29 text_list.append(Text(self.frame_ch, width=20, height=1, bd=0)) 30 text_list[n].insert('1.0', 'test') 31 text_list[n].configure(state=DISABLED) 32 text_list[n].pack() 33 34 35 def canvas_config(self, event): 36 self.canvas.configure(scrollregion=self.canvas.bbox("all"), height=self.list_height) 37 38root = Tk() 39t = TestScroll(root) 40t.place(x=0, y=0) 41root.mainloop()
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。