mirror of
https://github.com/ckaczor/WorkIndicator.git
synced 2026-01-13 17:23:18 -05:00
43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<windows:CategoryPanel x:Class="WorkIndicator.Options.GeneralOptionsPanel"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:windows="clr-namespace:Common.Wpf.Windows;assembly=Common.Wpf"
|
|
xmlns:properties="clr-namespace:WorkIndicator.Properties"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="300"
|
|
DataContext="{Binding RelativeSource={RelativeSource Self}}">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<CheckBox Content="{x:Static properties:Resources.StartWithWindows}"
|
|
Name="StartWithWindows"
|
|
VerticalAlignment="Top"
|
|
VerticalContentAlignment="Center"
|
|
Grid.ColumnSpan="2" />
|
|
<Label Content="{x:Static properties:Resources.DefaultStatus}"
|
|
Name="ApplicationNameLabel"
|
|
VerticalAlignment="Center"
|
|
Padding="0,0,6,0"
|
|
Grid.Row="1"
|
|
Margin="0,20,0,0" />
|
|
<ComboBox Name="DefaultStatus"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Margin="0,20,0,0"
|
|
ItemsSource="{Binding Path=DefaultStatusList}"
|
|
DisplayMemberPath="Text"
|
|
SelectedValuePath="Value">
|
|
</ComboBox>
|
|
</Grid>
|
|
</windows:CategoryPanel>
|