MainPage.xaml
上传用户:haqqyyuan
上传日期:2021-05-06
资源大小:26k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. <UserControl x:Class="SL4Demo.MainPage"
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.     mc:Ignorable="d">
  7.     <Grid x:Name="LayoutRoot" Background="White">
  8.         <StackPanel HorizontalAlignment="Center">
  9.             <Rectangle x:Name="rectWebCamView" Width="500" Height="400"/>
  10.             <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
  11.                 <Button x:Name="btnCaptureDevice" Content="Capture Device" Margin="5"/>
  12.                 <Button x:Name="btnPlayCapture" Content="Start Capture" Margin="5"/>
  13.                 <Button x:Name="btnStopCapture" Content="Stop Capture" Margin="5"/>
  14.             </StackPanel>
  15.         </StackPanel>
  16.     </Grid>
  17. </UserControl>