You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
637 B
24 lines
637 B
using System.Windows;
|
|
|
|
namespace WhackerLinkConsoleV2
|
|
{
|
|
public partial class WidgetSelectionWindow : Window
|
|
{
|
|
public bool ShowSystemStatus { get; private set; } = true;
|
|
public bool ShowChannels { get; private set; } = true;
|
|
|
|
public WidgetSelectionWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ApplyButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
ShowSystemStatus = SystemStatusCheckBox.IsChecked ?? false;
|
|
ShowChannels = ChannelCheckBox.IsChecked ?? false;
|
|
DialogResult = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|