|
14
|
1 |
<UserControl x:Class="Iri.Modernisation.Controls.View.ProductionEditor"
|
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
4 |
xmlns:View="clr-namespace:Iri.Modernisation.Controls.View">
|
|
|
5 |
<StackPanel x:Name="ProductionViewerPanel">
|
|
|
6 |
<StackPanel x:Name="ProductionViewerControlPanel" Height="29" Orientation="Horizontal">
|
|
|
7 |
<Button x:Name="ProductionViewerDisplayChutierButton" Width="75" Content="Chutier"/>
|
|
|
8 |
<Button x:Name="ProductionViewerDisplayWebcamButton" Width="75" Content="Webcam"/>
|
|
|
9 |
</StackPanel>
|
|
17
|
10 |
<View:VideoViewer Margin="0,0,24,0" Height="227"/>
|
|
20
|
11 |
<StackPanel x:Name="DescriptionSegmentPanel" Height="128">
|
|
|
12 |
<TextBox x:Name="TitleSegmentLabel" Text="Title Segment" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
|
|
|
13 |
<TextBox x:Name="DescriptionSegmentLabel" Text="Desc Segment" TextWrapping="Wrap" Height="64" AcceptsReturn="True" VerticalScrollBarVisibility="Visible"/>
|
|
|
14 |
<TextBox x:Name="KeyWordLabel" Text="KeyWord Segment" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
|
|
14
|
15 |
</StackPanel>
|
|
|
16 |
</StackPanel>
|
|
|
17 |
</UserControl>
|