WinParameter.xaml
4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<Window
x:Class="RCS.WinClient.Views.Pages.WinParameter"
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:RCS.WinClient.Views.Pages"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="参数配置"
Width="800"
Height="400"
AllowsTransparency="True"
Background="Transparent"
Loaded="Window_Loaded"
ResizeMode="CanResizeWithGrip"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
mc:Ignorable="d">
<WindowChrome.WindowChrome>
<WindowChrome CaptionHeight="0" ResizeBorderThickness="2" />
</WindowChrome.WindowChrome>
<Border
Background="White"
BorderBrush="{StaticResource HHLGRed}"
BorderThickness="1">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Grid
Name="Spl_title"
Grid.Row="0"
Grid.ColumnSpan="2">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock
HorizontalAlignment="Stretch"
VerticalAlignment="Center"
FontSize="20"
Foreground="{StaticResource HHAst2}"
MouseLeftButtonDown="TextBlock_MouseLeftButtonDown"
TextAlignment="Center">
参 数 配 置
</TextBlock>
<Button
Name="BtnClose"
Grid.Column="3"
Width="20"
Margin="2"
Background="{StaticResource HHLGRed}"
Click="BtnClose_Click"
Foreground="White">
X
</Button>
</Grid>
<StackPanel
Grid.Row="1"
Height="2"
Background="{StaticResource HHLGRed}" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<DataGrid
Name="DGrid_KeyValue"
HorizontalAlignment="Center"
AutoGenerateColumns="False"
Background="Transparent"
CanUserAddRows="False"
CanUserDeleteRows="False"
GridLinesVisibility="All">
<DataGrid.Columns>
<DataGridTextColumn
Width="190"
Binding="{Binding Path=KeyVariable}"
CanUserSort="False"
Header="参数变量"
IsReadOnly="True" />
<DataGridTextColumn
Width="400"
Binding="{Binding Path=KeyDescribe}"
CanUserSort="False"
Header="变量描述"
IsReadOnly="True" />
<DataGridTextColumn
Width="190"
Binding="{Binding Path=Value}"
CanUserSort="False"
Header="参数值" />
</DataGrid.Columns>
</DataGrid>
<Button
Name="Btn_OK"
Grid.Row="1"
Width="200"
Height="50"
Margin="0,20,0,0"
Background="{StaticResource HHLGRed}"
Click="Btn_OK_Click"
FontSize="16"
Foreground="White">
更新
</Button>
</Grid>
<StackPanel
Grid.Row="3"
Height="2"
Background="{StaticResource HHLGRed}" />
<TextBlock
Grid.Row="4"
HorizontalAlignment="Center"
FontSize="20"
Foreground="{StaticResource HHAst2}">
控制台系统
</TextBlock>
</Grid>
</Border>
</Window>