Python Tkinter TTK Separator With Label
I am trying to create a custom widget that includes a separator behind a label. I would like the separator to stretch out behind the label to each side of the window (using grid). I tried to create this myself, but I couldn't get the separator to stick to the edges. import tkinter as tk from tkinter import ttk class LabelSeparator (tk.Frame): def __init__ (self, parent, text = "", width = "", *args): tk.Frame.__init__ (self, parent, *args) self.separator = ttk.Separator (self, orient = tk.HORIZONTAL) self.separator.grid (row = 0, column = 0, sticky = "ew") self.label = ttk.Label (self, text =