|
0
|
1 |
<UserControl
|
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
6 |
mc:Ignorable="d"
|
|
|
7 |
xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
|
|
4
|
8 |
x:Class="Iri.Modernisation.Controls.View.ProductionMenu" Height="64" Width="120"
|
|
|
9 |
xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
|
|
|
10 |
>
|
|
|
11 |
|
|
|
12 |
<UserControl.Resources>
|
|
|
13 |
<ResourceDictionary>
|
|
30
|
14 |
<ResourceDictionary.MergedDictionaries>
|
|
|
15 |
<ResourceDictionary Source="/Iri.Modernisation.Styles;Component/Templates_CommonTemplate.xaml"/>
|
|
|
16 |
</ResourceDictionary.MergedDictionaries>
|
|
4
|
17 |
<Lang:LangResource x:Name="LangLabels" x:Key="LangLabels"></Lang:LangResource>
|
|
|
18 |
</ResourceDictionary>
|
|
|
19 |
</UserControl.Resources>
|
|
0
|
20 |
<StackPanel x:Name="ProductionMenuPanel">
|
|
4
|
21 |
<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="ProductionMenuLabel" Text="{Binding ProductionMenuTitle, Source={StaticResource LangLabels}}" TextWrapping="Wrap"/>
|
|
0
|
22 |
<StackPanel Margin="8,0,0,0">
|
|
4
|
23 |
<TextBlock Style="{StaticResource CommonTextBlock}" Input:CommandService.Command="FlipView" Text="{Binding ProductionMenuMyBookLabel, Source={StaticResource LangLabels}}" />
|
|
|
24 |
<TextBlock Style="{StaticResource CommonTextBlock}" Text="{Binding ProductionMenuCreateLabel, Source={StaticResource LangLabels}}"/>
|
|
|
25 |
<TextBlock Style="{StaticResource CommonTextBlock}" Text="{Binding ProductionMenuUpdateLabel, Source={StaticResource LangLabels}}"/>
|
|
0
|
26 |
</StackPanel>
|
|
|
27 |
</StackPanel>
|
|
|
28 |
</UserControl> |