94 lines
3.2 KiB
Plaintext
94 lines
3.2 KiB
Plaintext
|
|
<basewindows:BaseWindow
|
||
|
|
x:Class="SamplePre.UIWpf.ParamManager.chirld.SelectParmListWindow"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:basewindows="clr-namespace:SamplePre.UIWpf.BaseWindows"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
Title="选择参数"
|
||
|
|
Width="600"
|
||
|
|
Height="450"
|
||
|
|
ResizeMode="NoResize"
|
||
|
|
WindowStartupLocation="CenterScreen"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="40" />
|
||
|
|
<RowDefinition Height="*" />
|
||
|
|
<RowDefinition Height="40" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<StackPanel Orientation="Horizontal">
|
||
|
|
<TextBlock
|
||
|
|
Margin="10,0"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Text="参数类型:" />
|
||
|
|
<ComboBox
|
||
|
|
x:Name="cmbDataType"
|
||
|
|
Width="100"
|
||
|
|
Height="30"
|
||
|
|
Margin="5"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
VerticalContentAlignment="Center"
|
||
|
|
ItemsSource="{Binding DataTypes}"
|
||
|
|
SelectedItem="{Binding FilterType}" />
|
||
|
|
</StackPanel>
|
||
|
|
<DataGrid
|
||
|
|
x:Name="dg_params"
|
||
|
|
Grid.Row="1"
|
||
|
|
AutoGenerateColumns="False"
|
||
|
|
Background="White"
|
||
|
|
CanUserAddRows="False"
|
||
|
|
CanUserSortColumns="True"
|
||
|
|
FrozenColumnCount="1"
|
||
|
|
HorizontalScrollBarVisibility="Auto"
|
||
|
|
IsReadOnly="True"
|
||
|
|
ItemsSource="{Binding Parms}"
|
||
|
|
SelectedItem="{Binding SelectParm}"
|
||
|
|
SelectionMode="Extended"
|
||
|
|
VerticalScrollBarVisibility="Auto">
|
||
|
|
<DataGrid.Columns>
|
||
|
|
<DataGridTextColumn
|
||
|
|
Width="*"
|
||
|
|
Binding="{Binding title}"
|
||
|
|
Header="标题" />
|
||
|
|
<DataGridTextColumn
|
||
|
|
Width="*"
|
||
|
|
Binding="{Binding unit}"
|
||
|
|
Header="PLC单位" />
|
||
|
|
<DataGridTextColumn
|
||
|
|
Width="*"
|
||
|
|
Binding="{Binding data_type}"
|
||
|
|
Header="数据类型" />
|
||
|
|
<DataGridTextColumn
|
||
|
|
Width="*"
|
||
|
|
Binding="{Binding data_value}"
|
||
|
|
Header="值" />
|
||
|
|
<DataGridTextColumn
|
||
|
|
Width="*"
|
||
|
|
Binding="{Binding plc_type}"
|
||
|
|
Header="PLC映射" />
|
||
|
|
|
||
|
|
</DataGrid.Columns>
|
||
|
|
</DataGrid>
|
||
|
|
|
||
|
|
<StackPanel
|
||
|
|
Grid.Row="2"
|
||
|
|
Margin="0,0,0,0"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
Orientation="Horizontal">
|
||
|
|
<Button
|
||
|
|
x:Name="btnOK"
|
||
|
|
Width="80"
|
||
|
|
Margin="5"
|
||
|
|
Command="{Binding BtnOKClickCommand}"
|
||
|
|
Content="确定" />
|
||
|
|
<Button
|
||
|
|
x:Name="btnCancel"
|
||
|
|
Width="80"
|
||
|
|
Margin="5"
|
||
|
|
Command="{Binding BtnCancelClickCommand}"
|
||
|
|
Content="取消" />
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</basewindows:BaseWindow>
|