|
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"
|
|
|
8 |
x:Class="Iri.Modernisation.Controls.View.ProductionMenu" Height="64" Width="120">
|
|
|
9 |
|
|
|
10 |
<StackPanel x:Name="ProductionMenuPanel">
|
|
|
11 |
<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="ProductionMenuLabel" Text="Production" TextWrapping="Wrap"/>
|
|
|
12 |
<StackPanel Margin="8,0,0,0">
|
|
|
13 |
<TextBlock Style="{StaticResource CommonTextBlock}" Input:CommandService.Command="FlipView" >Mon vidéo-livre</TextBlock>
|
|
|
14 |
<TextBlock Style="{StaticResource CommonTextBlock}" >Créer</TextBlock>
|
|
|
15 |
<TextBlock Style="{StaticResource CommonTextBlock}" >Modifier</TextBlock>
|
|
|
16 |
</StackPanel>
|
|
|
17 |
</StackPanel>
|
|
|
18 |
</UserControl> |