123456789101112131415161718192021222324 |
- <dhcc:TradePage x:Class="TellerSystem.Controls.Ext.Controls.PictureCaptureViewer"
- 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:dhcc="http://www.dhcc.com.cn"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Width="700"
- Height="500"
- dhcc:FocusManager.EnableFocusControl="False"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="50"/>
- </Grid.RowDefinitions>
- <GroupBox Grid.Row="0" Style="{x:Null}" Header="影像采集" >
- <dhcc:PictureDisplay Name="PictureCapture"/>
- </GroupBox>
- <StackPanel Orientation="Horizontal" Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Center">
- <Button Height="20" Content="完 成" Click="Button_Click"/>
- <Button Height="20" Content="退 出" Click="Button_Click_1"/>
- </StackPanel>
- </Grid>
- </dhcc:TradePage>
|