using System.Windows.Controls; namespace launcher_client_win.GUI; public class TabButton : Button { public static readonly DependencyProperty TabGridProp = DependencyProperty.Register( "TabGrid", typeof(Grid), typeof(TabButton)); public Grid TabGrid { get => (Grid)GetValue(TabGridProp); set => SetValue(TabGridProp, value); } }