12345678910111213141516171819202122232425262728293031323334353637 |
- <Window x:Class="RasonicSignalDetectionDemo.MainWindow"
- 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:local="clr-namespace:RasonicSignalDetectionDemo"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="80"/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.5*"/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0">
- <Image x:Name="ImgOrig" Margin="4,4,4,4" Source="{Binding}"/>
- </Grid>
- <Grid Grid.Column="1">
- <Image x:Name="ImgCrop" Margin="4,4,4,4" Source="{Binding}"/>
- </Grid>
- </Grid>
- <Grid Grid.Row="1">
- <StackPanel VerticalAlignment="Center" Orientation="Horizontal">
- <Button Margin="4,2,2,4" Content="检测单张" Width="120" FontSize="16" Click="DetectImage"/>
- <TextBlock x:Name="StatusText1" Width="80" Margin="4,4,4,4" VerticalAlignment="Center"/>
-
- </StackPanel>
- </Grid>
- </Grid>
- </Window>
|