namespace launcher_client_avalonia.GUI; public class TabButton : Button { public static readonly StyledProperty TabGridProp = AvaloniaProperty.Register("TabGrid"); public Grid TabGrid { get => (Grid)GetValue(TabGridProp); set => SetValue(TabGridProp, value); } }