领胜LDS 键盘AOI检测项目
xcd
2020-06-24 d6c577e17ee7bb5331dd51d803f9b42441b0f0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Window x:Class="Bro.UI.Test"
        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:imageCanvas="clr-namespace:Bro.Common.ImageCanvas;assembly=Bro.Common.ImageCanvas"
        xmlns:local="clr-namespace:Bro.UI"
        mc:Ignorable="d"
        Title="Test" Height="450" Width="800">
    <Grid ScrollViewer.CanContentScroll="False">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="67*"/>
            <ColumnDefinition Width="725*"/>
        </Grid.ColumnDefinitions>
        <imageCanvas:ImageCanvas Grid.ColumnSpan="2">
        </imageCanvas:ImageCanvas>
    </Grid>
</Window>