16 lines
405 B
C#
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);
|
|
}
|
|
} |