MainPage.xaml
上传用户:haqqyyuan
上传日期:2021-05-06
资源大小:26k
文件大小:1k
- <UserControl x:Class="SL4Demo.MainPage"
- 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"
- mc:Ignorable="d">
- <Grid x:Name="LayoutRoot" Background="White">
- <StackPanel HorizontalAlignment="Center">
- <Rectangle x:Name="rectWebCamView" Width="500" Height="400"/>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <Button x:Name="btnCaptureDevice" Content="Capture Device" Margin="5"/>
- <Button x:Name="btnPlayCapture" Content="Start Capture" Margin="5"/>
- <Button x:Name="btnStopCapture" Content="Stop Capture" Margin="5"/>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>