mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<Window x:Class="FeedCenter.Options.OptionsWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:properties="clr-namespace:FeedCenter.Properties"
|
|
Title="{x:Static properties:Resources.OptionsWindow}"
|
|
Height="360"
|
|
Width="720"
|
|
ResizeMode="CanResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
Icon="/FeedCenter;component/Resources/Application.ico">
|
|
<Grid>
|
|
<ListBox HorizontalAlignment="Left"
|
|
Name="CategoryListBox"
|
|
Width="126"
|
|
SelectionChanged="HandleSelectedCategoryChanged"
|
|
Margin="12,12,0,41" />
|
|
<ContentControl Margin="144,12,12,41"
|
|
Name="ContentControl"
|
|
IsTabStop="False" />
|
|
<Button Content="{x:Static properties:Resources.CloseButton}"
|
|
Margin="0,0,12,12"
|
|
Height="23"
|
|
VerticalAlignment="Bottom"
|
|
HorizontalAlignment="Right"
|
|
Width="75"
|
|
IsCancel="True" />
|
|
</Grid>
|
|
</Window>
|