删除gridded python Tkinter小部件之间的自动间隙

时间:2017-02-03 13:04:35

标签: python tkinter tkinter-canvas

我在Windows上使用python2。当我运行followig代码时,我在两个画布之间得到了一个间隙(见下图),尽管我对它们进行网格化时没有指定填充。 有没有可能删除它?

import Tkinter as tk
import ttk

class App(tk.Tk):

    def __init__(self, *args, **kwargs):
        tk.Tk.__init__(self, *args, **kwargs)
        self.c1 = tk.Canvas(master=self, background='white', borderwidth=0,
                            relief=tk.FLAT)
        self.c2 = tk.Canvas(master=self, background='white', borderwidth=0,
                            relief=tk.FLAT)
        self.c1.grid(row=0, column=0, sticky=tk.NSEW)
        self.c2.grid(row=1, column=0, sticky=tk.NSEW)

        self.mainloop()

App()

enter image description here

感谢您的帮助!

1 个答案:

答案 0 :(得分:2)

您还需要将highlightthickness设置为零。

self.c1 = tk.Canvas(..., highlightthickness=0)

canvas page of effbot highlightthickness解释为:

  

高光边框的宽度。默认值是系统特定的   (通常是一个或两个像素)。 (highlightThickness / HighlightThickness)