dtlauncher/launcher-client-win/GUI/TabButton.cs
2022-03-16 22:12:14 +03:00

16 lines
405 B
C#

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);
}
}