dtlauncher/launcher-client-avalonia/GUI/TabButton.cs
2022-06-30 22:06:33 +03:00

11 lines
331 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 => (Grid)GetValue(TabGridProp);
set => SetValue(TabGridProp, value);
}
}