client/src/Iri.Modernisation.Controls/View/WebCamControl/WebCamControl.xaml
changeset 29 5f8d275750e7
child 35 43bb1b8ed555
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/Iri.Modernisation.Controls/View/WebCamControl/WebCamControl.xaml	Fri Jan 08 11:33:24 2010 +0100
@@ -0,0 +1,20 @@
+<UserControl
+	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+    xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
+	mc:Ignorable="d"
+	x:Class="Iri.Modernisation.Controls.View.WebCamControl" Height="243" Width="223">
+
+	<Grid x:Name="LayoutRoot">
+	
+	<StackPanel x:Name="VideoViewerControlPanel" Orientation="Horizontal" Margin="8,0,8,8" VerticalAlignment="Bottom">
+        <Button  x:Name="VideoControlLanch" Input:CommandService.Command="CamRecordLanch" Width="43" Content="^" />
+			<Button  x:Name="VideoControlRecord" Input:CommandService.Command="CamRecordBegin" Width="43" Content="O" />
+        <Button  x:Name="VideoControlStop" Input:CommandService.Command="CamRecordEnd" Width="43" Content="[]" />
+			<Button x:Name="VideoControlClose" Input:CommandService.Command="CamRecordStop"  Width="25" Content="X"/>
+		</StackPanel>
+	<Rectangle x:Name="VideoScreen" Fill="White" Margin="8,8,5,34" Stroke="Black"/>
+	</Grid>
+</UserControl>
\ No newline at end of file