client/src/Iri.Modernisation.Controls/View/ProductionEditor/ProductionEditor.xaml
author Matthieu Totet
Fri, 11 Dec 2009 10:48:58 +0100
changeset 20 c2dd8119a6c1
parent 17 0e4e63f6f567
child 21 253f142174ac
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"/> 
20
c2dd8119a6c1 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    11
        <StackPanel x:Name="DescriptionSegmentPanel" Height="128">
c2dd8119a6c1 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    12
            <TextBox x:Name="TitleSegmentLabel" Text="Title Segment" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
c2dd8119a6c1 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    13
            <TextBox  x:Name="DescriptionSegmentLabel"  Text="Desc Segment" TextWrapping="Wrap" Height="64" AcceptsReturn="True" VerticalScrollBarVisibility="Visible"/>
c2dd8119a6c1 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    14
            <TextBox  x:Name="KeyWordLabel" Text="KeyWord Segment" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
14
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    15
        </StackPanel>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    16
    </StackPanel>
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
    17
</UserControl>