| author | totetm <> |
| Thu, 14 Jan 2010 16:39:50 +0100 | |
| changeset 30 | 644e3cd48034 |
| parent 29 | 5f8d275750e7 |
| child 35 | 43bb1b8ed555 |
| permissions | -rw-r--r-- |
| 29 | 1 |
<UserControl |
| 14 | 2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
| 29 | 4 |
xmlns:Converter="clr-namespace:Iri.Modernisation.Controls.Converter" |
5 |
xmlns:View="clr-namespace:Iri.Modernisation.Controls.View" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" x:Class="Iri.Modernisation.Controls.View.ProductionEditor" |
|
6 |
mc:Ignorable="d"> |
|
7 |
<UserControl.Resources> |
|
8 |
<Converter:BoolToVisibility x:Key="BoolToVisibility"/> |
|
9 |
||
10 |
||
11 |
</UserControl.Resources> |
|
| 14 | 12 |
<StackPanel x:Name="ProductionViewerPanel"> |
13 |
<StackPanel x:Name="ProductionViewerControlPanel" Height="29" Orientation="Horizontal"> |
|
|
23
10acb6a11a73
Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents:
21
diff
changeset
|
14 |
|
| 29 | 15 |
<ToggleButton IsChecked="{Binding IsRecordMode, Mode=TwoWay}" x:Name="ProductionViewerDisplayWebcamButton" Width="75" Content="Webcam"/>
|
| 14 | 16 |
</StackPanel> |
| 29 | 17 |
<View:WebCamControl Visibility="{Binding IsRecordMode, Converter={StaticResource BoolToVisibility}}"/>
|
18 |
<View:VideoViewer x:Name="VideoViewerElement" DataContext="{Binding ViewModelVideoViewer}" Margin="0" Height="227" Width="Auto" d:LayoutOverrides="Height, VerticalMargin"/>
|
|
19 |
<StackPanel x:Name="DescriptionSegmentPanel" Height="128"> |
|
20 |
<TextBox IsEnabled="{Binding IsEditableIndex}" x:Name="TitleSegmentLabel" Text="{Binding SelectedIndexTitle, Mode=TwoWay}" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
|
|
21 |
<TextBox IsEnabled="{Binding IsEditableIndex}" x:Name="DescriptionSegmentLabel" Text="{Binding SelectedIndexDescription, Mode=TwoWay}" TextWrapping="Wrap" Height="64" AcceptsReturn="True" VerticalScrollBarVisibility="Visible"/>
|
|
22 |
<TextBox IsEnabled="{Binding IsEditableIndex}" x:Name="KeyWordLabel" Text="{Binding SelectedIndexTags, Mode=TwoWay}" TextWrapping="Wrap" Height="24" Margin="0,0,8,0"/>
|
|
| 14 | 23 |
</StackPanel> |
24 |
</StackPanel> |
|
25 |
</UserControl> |