40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<Window
|
|
x:Class="ParameterResolve.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:local="clr-namespace:ParameterResolve"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="MainWindow"
|
|
Width="800"
|
|
Height="450"
|
|
mc:Ignorable="d">
|
|
<Grid Margin="5">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<DataGrid
|
|
x:Name="dataGrid"
|
|
Grid.Row="0"
|
|
AutoGenerateColumns="True"
|
|
CanUserAddRows="False"
|
|
CanUserDeleteRows="False"
|
|
IsReadOnly="False"
|
|
ItemsSource="{Binding Parameters}" />
|
|
<StackPanel
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Right"
|
|
Orientation="Horizontal">
|
|
<Button
|
|
Margin="5"
|
|
Padding="12,5"
|
|
Content="关联系统分类" />
|
|
<Button
|
|
x:Name="btnFill"
|
|
Margin="5"
|
|
Content="填写参数,未选中则填写全部" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|