1234567891011121314151617 |
- <Window x:Class="SAGA.MBI.ModeInfoEdit.WinPointInfoTest"
- 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:infoProperty="clr-namespace:WPfPointInfo.InfoProperty;assembly=WPfPointInfo"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid Margin="20,10,20,10">
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition Height="Auto"></RowDefinition>
- </Grid.RowDefinitions>
- <infoProperty:PointInfoGrid x:Name="InfoGrid" NameColumnWidth="120"></infoProperty:PointInfoGrid>
- <Button Grid.Row="1" Content="确定" Click="ButtonBase_OnClick"></Button>
- </Grid>
- </Window>
|