dtlauncher/launcher-client-avalonia/GUI/TabButton.cs
2022-07-01 19:36:38 +03:00

11 lines
325 B
C#

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