client/src/Iri.Modernisation.Controls/View/ProductionEditor/ProductionEditor.xaml
author Matthieu Totet
Tue, 22 Dec 2009 16:22:22 +0100
changeset 26 44a2dc869e28
parent 23 10acb6a11a73
child 29 5f8d275750e7
permissions -rw-r--r--
Save before big changes on HeaderProduction
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">
23
10acb6a11a73 Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents: 21
diff changeset
     7
            
10acb6a11a73 Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents: 21
diff changeset
     8
            <ToggleButton x:Name="ProductionViewerDisplayWebcamButton"  Width="75" Content="Webcam"/>
14
a48c44bc825b Add Controls in ProductionView
Matthieu Totet
parents:
diff changeset
     9
        </StackPanel>
23
10acb6a11a73 Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents: 21
diff changeset
    10
        <View:VideoViewer x:Name="VideoViewerElement" DataContext="{Binding ViewModelVideoViewer}" Margin="0,0,24,0"  Height="227"/> 
20
c2dd8119a6c1 Update ProductionView
Matthieu Totet
parents: 17
diff changeset
    11
        <StackPanel x:Name="DescriptionSegmentPanel" Height="128">
21
253f142174ac Update ProductionView
Matthieu Totet
parents: 20
diff changeset
    12
            <TextBox IsEnabled="{Binding  IsEditableIndex}" x:Name="TitleSegmentLabel" Text="{Binding  SelectedIndexTitle,Mode=TwoWay}" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
253f142174ac Update ProductionView
Matthieu Totet
parents: 20
diff changeset
    13
            <TextBox  IsEnabled="{Binding  IsEditableIndex}" x:Name="DescriptionSegmentLabel"  Text="{Binding  SelectedIndexDescription,Mode=TwoWay}" TextWrapping="Wrap" Height="64" AcceptsReturn="True" VerticalScrollBarVisibility="Visible"/>
253f142174ac Update ProductionView
Matthieu Totet
parents: 20
diff changeset
    14
            <TextBox  IsEnabled="{Binding  IsEditableIndex}" x:Name="KeyWordLabel" Text="{Binding  SelectedIndexTags,Mode=TwoWay}" 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>