mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-31 01:25:38 -05:00
Move application files to sub-folder
This commit is contained in:
64
Application/Options/DisplayOptionsPanel.xaml
Normal file
64
Application/Options/DisplayOptionsPanel.xaml
Normal file
@@ -0,0 +1,64 @@
|
||||
<Options:OptionsPanelBase x:Class="FeedCenter.Options.DisplayOptionsPanel"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:Options="clr-namespace:FeedCenter.Options"
|
||||
xmlns:Properties="clr-namespace:FeedCenter.Properties"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="300"
|
||||
d:DesignWidth="300">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<CheckBox Content="{x:Static Properties:Resources.lockWindowCheckBox}"
|
||||
Height="16"
|
||||
HorizontalAlignment="Left"
|
||||
Name="lockWindowCheckBox"
|
||||
VerticalAlignment="Top"
|
||||
Width="300"
|
||||
Grid.ColumnSpan="2" />
|
||||
<CheckBox Content="{x:Static Properties:Resources.displayEmptyFeedsCheckBox}"
|
||||
Height="16"
|
||||
HorizontalAlignment="Left"
|
||||
Margin="0,22,0,0"
|
||||
Name="displayEmptyFeedsCheckBox"
|
||||
VerticalAlignment="Top"
|
||||
Width="300"
|
||||
Grid.ColumnSpan="2" />
|
||||
<Label Content="{x:Static Properties:Resources.toolbarLocationLabel}"
|
||||
Name="toolbarLocationLabel"
|
||||
VerticalAlignment="Top"
|
||||
Margin="0,50,0,0"
|
||||
Padding="0,5,5,5"
|
||||
Target="{Binding ElementName=toolbarLocationComboBox}"
|
||||
Width="97" />
|
||||
<ComboBox Margin="8,53,0,0"
|
||||
Name="toolbarLocationComboBox"
|
||||
VerticalAlignment="Top" Grid.Column="1">
|
||||
<ComboBoxItem Content="{x:Static Properties:Resources.Top}"
|
||||
Tag="{x:Static Dock.Top}" />
|
||||
<ComboBoxItem Content="{x:Static Properties:Resources.Bottom}"
|
||||
Tag="{x:Static Dock.Bottom}" />
|
||||
</ComboBox>
|
||||
<Label Content="{x:Static Properties:Resources.multipleLineDisplayLabel}"
|
||||
Name="multipleLineDisplayLabel"
|
||||
VerticalAlignment="Top"
|
||||
Margin="0,82,0,0"
|
||||
Padding="0,5,5,5"
|
||||
Target="{Binding ElementName=multipleLineDisplayComboBox}"
|
||||
Width="97" />
|
||||
<ComboBox Margin="8,86,0,0"
|
||||
Name="multipleLineDisplayComboBox"
|
||||
VerticalAlignment="Top" Grid.Column="1">
|
||||
<ComboBoxItem Content="{x:Static Properties:Resources.multipleLineDisplayNormal}"
|
||||
Tag="{x:Static Options:MultipleLineDisplay.Normal}" />
|
||||
<ComboBoxItem Content="{x:Static Properties:Resources.multipleLineDisplaySingleLine}"
|
||||
Tag="{x:Static Options:MultipleLineDisplay.SingleLine}" />
|
||||
<ComboBoxItem Content="{x:Static Properties:Resources.multipleLineDisplayFirstLine}"
|
||||
Tag="{x:Static Options:MultipleLineDisplay.FirstLine}" />
|
||||
</ComboBox>
|
||||
</Grid>
|
||||
</Options:OptionsPanelBase>
|
||||
Reference in New Issue
Block a user