FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
StarlightGUI/StarlightGUI/KernelModulePage.xaml at master · CKWindowsProject/StarlightGUI · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
CKWindowsProject
/
StarlightGUI
Public
forked from
OpenStarlight/StarlightGUI
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
StarlightGUI
/
StarlightGUI
/
KernelModulePage.xaml
Copy path
More file actions
More file actions
Latest commit
History
History
History
280 lines (261 loc) · 13.4 KB
Breadcrumbs
StarlightGUI
/
StarlightGUI
/
KernelModulePage.xaml
Copy path
File metadata and controls
280 lines (261 loc) · 13.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<Pag
e
x
:
Class
=
"
StarlightGUI.KernelModulePage
"
xmlns
=
"
http://schemas.microsoft.com/winfx/2006/xaml/presentation
"
xmlns
:
x
=
"
http://schemas.microsoft.com/winfx/2006/xaml
"
xmlns
:
essential
=
"
using:WinUI3Package
"
xmlns
:
d
=
"
http://schemas.microsoft.com/expression/blend/2008
"
xmlns
:
local
=
"
using:StarlightGUI
"
xmlns
:
mc
=
"
http://schemas.openxmlformats.org/markup-compatibility/2006
"
Background
=
"
{StaticResource WindowBackgroundBrush}
"
mc
:
Ignorable
=
"
d
"
>
<
Grid
>
<
Grid
Padding
=
"
20,10,20,10
"
>
<
Grid
.RowDefinitions>
<
RowDefinition
Height
=
"
Auto
"
/>
<
RowDefinition
Height
=
"
Auto
"
/>
<
RowDefinition
Height
=
"
*
"
/>
</
Grid
.RowDefinitions>
<!--
固定标题栏区域
-->
<
Grid
Grid.Row=
"
0
"
Padding
=
"
0,0,0,5
"
Background
=
"
{StaticResource WindowBackgroundBrush}
"
>
<
Grid
.ColumnDefinitions>
<
ColumnDefinition
Width
=
"
Auto
"
/>
<
ColumnDefinition
Width
=
"
Auto
"
/>
<
ColumnDefinition
Width
=
"
*
"
/>
<
ColumnDefinition
Width
=
"
Auto
"
/>
<
ColumnDefinition
Width
=
"
Auto
"
/>
</
Grid
.ColumnDefinitions>
<
TextBlock
Grid.Column=
"
0
"
VerticalAlignment
=
"
Center
"
FontSize
=
"
18
"
FontWeight
=
"
Bold
"
Text
=
"
模块管理器
"
/>
<
TextBlock
x
:
Name
=
"
KernelModuleCountText
"
Grid.Column=
"
1
"
Margin
=
"
10,0,0,0
"
VerticalAlignment
=
"
Center
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseMediumBrush}
"
Text
=
"
正在加载...
"
/>
<
CommandBar
Grid.Column=
"
3
"
HorizontalAlignment
=
"
Right
"
DefaultLabelPosition
=
"
Right
"
>
<
AppBarButton
x
:
Name
=
"
RefreshKernelModuleListButton
"
Click
=
"
RefreshKernelModuleListButton_Click
"
Label
=
"
刷新
"
>
<
AppBarButton
.Icon>
<
FontIcon
FontFamily
=
"
Segoe Fluent Icons
"
Glyph
=
"

"
/>
</
AppBarButton
.Icon>
</
AppBarButton
>
<
AppBarButton
x
:
Name
=
"
LoadDriverButton
"
Click
=
"
LoadDriverButton_Click
"
Label
=
"
加载驱动
"
>
<
AppBarButton
.Icon>
<
FontIcon
FontFamily
=
"
Segoe Fluent Icons
"
Glyph
=
"

"
/>
</
AppBarButton
.Icon>
</
AppBarButton
>
<
AppBarButton
x
:
Name
=
"
UnloadModuleButton
"
Click
=
"
UnloadModuleButton_Click
"
Label
=
"
卸载模块
"
>
<
AppBarButton
.Icon>
<
FontIcon
FontFamily
=
"
Segoe Fluent Icons
"
Glyph
=
"

"
/>
</
AppBarButton
.Icon>
</
AppBarButton
>
</
CommandBar
>
<
TextBox
x
:
Name
=
"
KernelModuleSearchBox
"
Grid.Column=
"
4
"
Width
=
"
300
"
Height
=
"
32
"
HorizontalAlignment
=
"
Right
"
PlaceholderText
=
"
搜索模块...
"
TextChanged
=
"
KernelModuleSearchBox_TextChanged
"
/>
</
Grid
>
<
Border
Grid.Row=
"
1
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
1
"
CornerRadius
=
"
5,5,0,0
"
>
<
Grid
>
<
Grid
.ColumnDefinitions>
<
ColumnDefinition
Width
=
"
*
"
/>
<
ColumnDefinition
Width
=
"
150
"
/>
<
ColumnDefinition
Width
=
"
150
"
/>
<
ColumnDefinition
Width
=
"
80
"
/>
<
ColumnDefinition
Width
=
"
80
"
/>
</
Grid
.ColumnDefinitions>
<
Button
x
:
Name
=
"
NameHeaderButton
"
Grid.Column=
"
0
"
Height
=
"
32
"
HorizontalAlignment
=
"
Stretch
"
Click
=
"
ColumnHeader_Click
"
Content
=
"
模块
"
CornerRadius
=
"
0
"
Tag
=
"
Name
"
/>
<
Button
x
:
Name
=
"
ImageBaseHeaderButton
"
Grid.Column=
"
1
"
Height
=
"
32
"
HorizontalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
1,0,0,0
"
Content
=
"
基址
"
CornerRadius
=
"
0
"
/>
<
Button
x
:
Name
=
"
DriverObjectHeaderButton
"
Grid.Column=
"
2
"
Height
=
"
32
"
HorizontalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
1,0,0,0
"
Content
=
"
驱动对象
"
CornerRadius
=
"
0
"
/>
<
Button
x
:
Name
=
"
SizeHeaderButton
"
Grid.Column=
"
3
"
Height
=
"
32
"
HorizontalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
1,0,0,0
"
Click
=
"
ColumnHeader_Click
"
Content
=
"
大小
"
CornerRadius
=
"
0
"
Tag
=
"
Size
"
/>
<
Button
x
:
Name
=
"
LoadOrderHeaderButton
"
Grid.Column=
"
4
"
Height
=
"
32
"
HorizontalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
1,0,0,0
"
Click
=
"
ColumnHeader_Click
"
Content
=
"
加载顺序
"
CornerRadius
=
"
0
"
Tag
=
"
LoadOrder
"
/>
</
Grid
>
</
Border
>
<
Border
Grid.Row=
"
2
"
Background
=
"
{ThemeResource ControlFillColorDefaultBrush}
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
1,0,1,1
"
CornerRadius
=
"
0,0,5,5
"
>
<
Grid
>
<
ProgressRing
x
:
Name
=
"
LoadingRing
"
HorizontalAlignment
=
"
Center
"
VerticalAlignment
=
"
Center
"
IsActive
=
"
False
"
/>
<
essential
:
RevealFocusPanel
x
:
Name
=
"
KernelModuleListViewRevealFocusPanel
"
>
<
ListView
x
:
Name
=
"
KernelModuleListView
"
Background
=
"
Transparent
"
RightTapped
=
"
KernelModuleListView_RightTapped
"
ItemContainerStyle
=
"
{StaticResource ListViewItemStyle}
"
ContainerContentChanging
=
"
KernelModuleListView_ContainerContentChanging
"
Tag
=
"
{x:Bind KernelModuleListViewRevealFocusPanel}
"
>
<!--
进程数据
-->
<
ListView
.ItemTemplate>
<
DataTemplate
>
<
Grid
Height
=
"
50
"
>
<
Grid
.ColumnDefinitions>
<
ColumnDefinition
Width
=
"
*
"
/>
<
ColumnDefinition
Width
=
"
150
"
/>
<
ColumnDefinition
Width
=
"
150
"
/>
<
ColumnDefinition
Width
=
"
80
"
/>
<
ColumnDefinition
Width
=
"
80
"
/>
</
Grid
.ColumnDefinitions>
<!--
模块
-->
<
StackPanel
Grid.Column=
"
0
"
VerticalAlignment
=
"
Center
"
>
<
TextBlock
FontSize
=
"
14
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseHighBrush}
"
Text
=
"
{Binding Name}
"
/>
<
TextBlock
FontSize
=
"
12
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseMediumBrush}
"
Text
=
"
{Binding Path}
"
/>
</
StackPanel
>
<
Border
Grid.Column=
"
1
"
Margin
=
"
12,0,0,0
"
HorizontalAlignment
=
"
Left
"
VerticalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
0,0,1,0
"
/>
<!--
基址
-->
<
TextBlock
Grid.Column=
"
1
"
Margin
=
"
24,0,0,0
"
HorizontalAlignment
=
"
Center
"
VerticalAlignment
=
"
Center
"
FontSize
=
"
12
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseMediumBrush}
"
Text
=
"
{Binding ImageBase}
"
/>
<
Border
Grid.Column=
"
2
"
Margin
=
"
12,0,0,0
"
HorizontalAlignment
=
"
Left
"
VerticalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
0,0,1,0
"
/>
<!--
驱动对象
-->
<
TextBlock
Grid.Column=
"
2
"
Margin
=
"
24,0,0,0
"
HorizontalAlignment
=
"
Center
"
VerticalAlignment
=
"
Center
"
FontSize
=
"
12
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseMediumBrush}
"
Text
=
"
{Binding DriverObject}
"
/>
<
Border
Grid.Column=
"
3
"
Margin
=
"
12,0,0,0
"
HorizontalAlignment
=
"
Left
"
VerticalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
0,0,1,0
"
/>
<!--
大小
-->
<
TextBlock
Grid.Column=
"
3
"
Margin
=
"
24,0,0,0
"
HorizontalAlignment
=
"
Center
"
VerticalAlignment
=
"
Center
"
FontSize
=
"
12
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseMediumBrush}
"
Text
=
"
{Binding Size}
"
/>
<
Border
Grid.Column=
"
4
"
Margin
=
"
12,0,0,0
"
HorizontalAlignment
=
"
Left
"
VerticalAlignment
=
"
Stretch
"
BorderBrush
=
"
{ThemeResource SystemControlBackgroundBaseLowBrush}
"
BorderThickness
=
"
0,0,1,0
"
/>
<!--
加载顺序
-->
<
TextBlock
Grid.Column=
"
4
"
Margin
=
"
24,0,0,0
"
HorizontalAlignment
=
"
Center
"
VerticalAlignment
=
"
Center
"
FontSize
=
"
12
"
Foreground
=
"
{ThemeResource SystemControlForegroundBaseMediumBrush}
"
Text
=
"
{Binding LoadOrder}
"
/>
</
Grid
>
</
DataTemplate
>
</
ListView
.ItemTemplate>
</
ListView
>
</
essential
:
RevealFocusPanel
>
</
Grid
>
</
Border
>
</
Grid
>
<
StackPanel
x
:
Name
=
"
InfoBarPanel
"
Margin
=
"
0,10,10,0
"
HorizontalAlignment
=
"
Right
"
/>
</
Grid
>
</
Page
>
Back
|
FazBrowse Home
|
New Git URL