| author | Matthieu Totet |
| Tue, 22 Dec 2009 16:22:22 +0100 | |
| changeset 26 | 44a2dc869e28 |
| parent 23 | 10acb6a11a73 |
| child 29 | 5f8d275750e7 |
| permissions | -rw-r--r-- |
| 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"> |
|
|
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 | 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 | 11 |
<StackPanel x:Name="DescriptionSegmentPanel" Height="128"> |
| 21 | 12 |
<TextBox IsEnabled="{Binding IsEditableIndex}" x:Name="TitleSegmentLabel" Text="{Binding SelectedIndexTitle,Mode=TwoWay}" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
|
13 |
<TextBox IsEnabled="{Binding IsEditableIndex}" x:Name="DescriptionSegmentLabel" Text="{Binding SelectedIndexDescription,Mode=TwoWay}" TextWrapping="Wrap" Height="64" AcceptsReturn="True" VerticalScrollBarVisibility="Visible"/>
|
|
14 |
<TextBox IsEnabled="{Binding IsEditableIndex}" x:Name="KeyWordLabel" Text="{Binding SelectedIndexTags,Mode=TwoWay}" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
|
|
| 14 | 15 |
</StackPanel> |
16 |
</StackPanel> |
|
17 |
</UserControl> |