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.
12 lines
746 B
12 lines
746 B
<Window x:Class="WhackerLinkConsoleV2.WidgetSelectionWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Select Widgets" Height="200" Width="300" WindowStartupLocation="CenterOwner">
|
|
<StackPanel Margin="20">
|
|
<TextBlock Text="Select Widgets to Display:" FontWeight="Bold" Margin="0,0,0,10" />
|
|
<CheckBox x:Name="SystemStatusCheckBox" Content="System Status" IsChecked="True" />
|
|
<CheckBox x:Name="ChannelCheckBox" Content="Channel" IsChecked="True" />
|
|
<Button Content="Apply" Width="80" Margin="0,20,0,0" HorizontalAlignment="Center" Click="ApplyButton_Click" />
|
|
</StackPanel>
|
|
</Window>
|