45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System.Windows.Controls;
|
|
|
|
namespace Launcher.Client.WPF.GUI;
|
|
|
|
public partial class ProgramSettingsPanelItem : UserControl
|
|
{
|
|
public static readonly DependencyProperty SettingKeyProp = DependencyProperty.Register(
|
|
"SettingKey",
|
|
typeof(string),
|
|
typeof(ProgramSettingsPanelItem));
|
|
public string SettingKey
|
|
{
|
|
get => (string)GetValue(SettingKeyProp);
|
|
set
|
|
{
|
|
SetValue(SettingKeyProp, value);
|
|
KeyLabel.ToolTip = new ToolTip
|
|
{
|
|
Content = value,
|
|
Foreground = App.MyWhite,
|
|
Background = App.MySoftDark
|
|
};
|
|
}
|
|
}
|
|
|
|
public static readonly DependencyProperty SettingValueProp = DependencyProperty.Register(
|
|
"SettingValue",
|
|
typeof(string),
|
|
typeof(ProgramSettingsPanelItem));
|
|
public string SettingValue
|
|
{
|
|
get => (string)GetValue(SettingValueProp);
|
|
set => SetValue(SettingValueProp, value);
|
|
}
|
|
|
|
public event Action<ProgramSettingsPanelItem> UpdatedEvent;
|
|
|
|
public ProgramSettingsPanelItem(string key, string value)
|
|
{
|
|
InitializeComponent();
|
|
SettingKey = key;
|
|
SettingValue = value;
|
|
ValueBox.TextChanged += (_,_)=> UpdatedEvent?.Invoke(this);
|
|
}
|
|
} |