| 12345678910111213141516171819202122232425262728 |
- <Page x:Class="MvvmScaffoldFrame48.WPFPage.DeepObjectDetectPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:MvvmScaffoldFrame48.WPFPage"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="DeepObjectDetectPage">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="0.3*"/>
- <ColumnDefinition Width="100"/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0">
- <Image Source="{Binding ShowImage}" />
- </Grid>
- <Grid Grid.Column="1">
- <Image Source="{Binding ShowErrImage}" Width="100" Height="100" VerticalAlignment="Top" />
- <TextBlock Text="{Binding ShowText}" VerticalAlignment="Top" Margin="0,100,0,0" />
- </Grid>
- <Grid Grid.Column="2">
- <Button x:Name="RunOnceBtn" Content="RunOnce" Command="{Binding TestCommand}" Height="60" HorizontalAlignment="Center" VerticalAlignment="Top" Width="90" />
- </Grid>
- </Grid>
- </Page>
|