client/src/Iri.Modernisation.Controls/View/ProductionEditor/ProductionEditor.xaml
author Matthieu Totet
Tue, 08 Dec 2009 11:39:27 +0100
changeset 19 7d044e7562ea
parent 17 0e4e63f6f567
child 20 c2dd8119a6c1
permissions -rw-r--r--
Update ProductionView
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     1
<UserControl x:Class="Iri.Modernisation.Controls.View.ProductionEditor"
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     2
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     3
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     4
	xmlns:View="clr-namespace:Iri.Modernisation.Controls.View">
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     5
    <StackPanel x:Name="ProductionViewerPanel">
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     6
        <StackPanel x:Name="ProductionViewerControlPanel" Height="29" Orientation="Horizontal">
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     7
            <Button x:Name="ProductionViewerDisplayChutierButton"  Width="75" Content="Chutier"/>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     8
            <Button x:Name="ProductionViewerDisplayWebcamButton"  Width="75" Content="Webcam"/>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     9
        </StackPanel>
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 14
diff changeset
    10
        <View:VideoViewer Margin="0,0,24,0"  Height="227"/> 
14
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    11
        <StackPanel x:Name="DescriptionSegmentPanel" Height="114">
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    12
            <TextBlock Style="{StaticResource CommonTextBlock}" x:Name="TitleSegmentLabel" Text="Title Segment" TextWrapping="Wrap" Height="16" Margin="0,0,8,0"/>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    13
            <ScrollViewer x:Name="DescriptionSegmentScroller" Height="73"  Margin="0,0,8,0">
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    14
                <TextBlock Style="{StaticResource CommonTextBlock}" x:Name="DescriptionSegmentLabel"  Text="Desc Segment" TextWrapping="Wrap" Height="130"/>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    15
            </ScrollViewer>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    16
            <TextBlock Style="{StaticResource CommonTextBlock}" x:Name="KeyWordLabel" Text="KeyWord Segment" TextWrapping="Wrap" Height="21" Margin="0,0,8,0"/>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    17
        </StackPanel>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    18
    </StackPanel>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    19
</UserControl>