前端转vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PictureCaptureViewer.xaml 1.2KB

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