This repository has been archived by the owner on Aug 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Narumikazuchi.Windows.xml
476 lines (476 loc) · 26 KB
/
Narumikazuchi.Windows.xml
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<?xml version="1.0"?>
<doc>
<assembly>
<name>Narumikazuchi.Windows</name>
</assembly>
<members>
<member name="T:Narumikazuchi.Windows.BorderlessWindowResizer">
<summary>
Fixes the maximize issue with <see cref="F:System.Windows.WindowStyle.None"/> covering the taskbar.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.BorderlessWindowResizer.AttachTo(System.Windows.Window)">
<summary>
Attaches a new instance of <see cref="T:Narumikazuchi.Windows.BorderlessWindowResizer"/> to the <see cref="T:System.Windows.Window"/>.
</summary>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.BorderlessWindowResizer.GetResizerForWindow(System.Windows.Window)">
<summary>
Gets the <see cref="T:Narumikazuchi.Windows.BorderlessWindowResizer"/> attached to the specified <see cref="T:System.Windows.Window"/>.
</summary>
<param name="window">The <see cref="T:System.Windows.Window"/> to look up.</param>
<returns>The <see cref="T:Narumikazuchi.Windows.BorderlessWindowResizer"/> attached to the specified window or <see langword="null"/>, if there is none attached</returns>
</member>
<member name="E:Narumikazuchi.Windows.BorderlessWindowResizer.WindowDockChanged">
<summary>
Occurs when the dock of the <see cref="T:System.Windows.Window"/> changed.
</summary>
</member>
<member name="T:Narumikazuchi.Windows.ColorPicker">
<summary>
Represents a window which can select a <see cref="T:System.Windows.Media.Color"/>.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.Show(System.Windows.Window)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.ColorPicker"/> window and returns the <see cref="T:System.Windows.Media.Color"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<returns>The <see cref="T:System.Windows.Media.Color"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.Show(System.Windows.Window,System.Boolean@)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.ColorPicker"/> window and returns the <see cref="T:System.Windows.Media.Color"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<param name="allowAlhpaChannel">Should the alpha channel be included in the selection.</param>
<returns>The <see cref="T:System.Windows.Media.Color"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.Show(System.Windows.Window,System.Boolean@,System.Windows.Style)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.ColorPicker"/> window and returns the <see cref="T:System.Windows.Media.Color"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<param name="allowAlhpaChannel">Should the alpha channel be included in the selection.</param>
<param name="withStyle">The style to apply to the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<returns>The <see cref="T:System.Windows.Media.Color"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.Show(System.Windows.Window,System.Windows.Media.Color@)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.ColorPicker"/> window and returns the <see cref="T:System.Windows.Media.Color"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<param name="initial">The initial <see cref="T:System.Windows.Media.Color"/> selected by the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<returns>The <see cref="T:System.Windows.Media.Color"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.Show(System.Windows.Window,System.Windows.Media.Color@,System.Boolean@)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.ColorPicker"/> window and returns the <see cref="T:System.Windows.Media.Color"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<param name="allowAlhpaChannel">Should the alpha channel be included in the selection.</param>
<param name="initial">The initial <see cref="T:System.Windows.Media.Color"/> selected by the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<returns>The <see cref="T:System.Windows.Media.Color"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.Show(System.Windows.Window,System.Windows.Media.Color@,System.Boolean@,System.Windows.Style)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.ColorPicker"/> window and returns the <see cref="T:System.Windows.Media.Color"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<param name="allowAlhpaChannel">Should the alpha channel be included in the selection.</param>
<param name="initial">The initial <see cref="T:System.Windows.Media.Color"/> selected by the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<param name="withStyle">The style to apply to the <see cref="T:Narumikazuchi.Windows.ColorPicker"/>.</param>
<returns>The <see cref="T:System.Windows.Media.Color"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.OnApplyTemplate">
<inheritdoc/>
</member>
<member name="F:Narumikazuchi.Windows.ColorPicker.SelectedColorProperty">
<summary>
Identifies the <see cref="P:Narumikazuchi.Windows.ColorPicker.SelectedColor"/> property.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.ColorPicker.SelectedColor">
<summary>
Gets or sets the <see cref="T:System.Windows.Media.Color"/> that this picker has currently selected.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.ColorPicker.AllowAlpha">
<summary>
Gets or sets if the <see cref="P:System.Windows.Media.Color.A"/> alpha values should be editable.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.ColorPicker.OnKeyDown(System.Windows.Input.KeyEventArgs)">
<inheritdoc/>
</member>
<member name="T:Narumikazuchi.Windows.ColorSpectrumSlider">
<summary>
Represents the spectrum slider next to the color canvas on a <see cref="T:Narumikazuchi.Windows.ColorPicker"/> object.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.ColorSpectrumSlider.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Narumikazuchi.Windows.ColorSpectrumSlider"/> class.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.ColorSpectrumSlider.OnApplyTemplate">
<inheritdoc/>
</member>
<member name="F:Narumikazuchi.Windows.ColorSpectrumSlider.SelectedColorProperty">
<summary>
Identifies the <see cref="P:Narumikazuchi.Windows.ColorSpectrumSlider.SelectedColor"/> property.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.ColorSpectrumSlider.SelectedColor">
<summary>
Gets or sets the currently selected <see cref="T:System.Windows.Media.Color"/>.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.ColorSpectrumSlider.OnValueChanged(System.Double,System.Double)">
<inheritdoc/>
</member>
<member name="T:Narumikazuchi.Windows.ColorToSolidColorBrushConverter">
<summary>
Converts between <see cref="T:System.Windows.Media.Color"/> and <see cref="T:System.Windows.Media.SolidColorBrush"/>.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.ColorToSolidColorBrushConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.ColorToSolidColorBrushConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc/>
</member>
<member name="T:Narumikazuchi.Windows.Font">
<summary>
Represents a font.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.Font.#ctor(System.Windows.Media.FontFamily,System.Double@,System.Windows.FontStretch@,System.Windows.FontStyle@,System.Windows.FontWeight@)">
<summary>
Initializes a new instance of the <see cref="T:Narumikazuchi.Windows.Font"/> struct.
</summary>
<param name="family">The font family.</param>
<param name="size">The font size.</param>
<param name="stretch">The stretch of the font.</param>
<param name="style">The font style.</param>
<param name="weight">The font weight.</param>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.Font.#ctor(System.Windows.Media.FontFamily,System.Double@,System.Windows.Media.Typeface)">
<summary>
Initializes a new instance of the <see cref="T:Narumikazuchi.Windows.Font"/> struct.
</summary>
<param name="family">The font family.</param>
<param name="size">The font size.</param>
<param name="typeface">The typeface information for the font.</param>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.Font.ApplyTo(System.Windows.Controls.Control)">
<summary>
Applies this font to the specified <see cref="T:System.Windows.Controls.Control"/>.
</summary>
<param name="control">The control to apply the font to.</param>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.Font.FromControl(System.Windows.Controls.Control)">
<summary>
Gets the currently used <see cref="T:Narumikazuchi.Windows.Font"/> from the <see cref="T:System.Windows.Controls.Control"/>.
</summary>
<param name="control">The control to get the font from.</param>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="P:Narumikazuchi.Windows.Font.Default">
<summary>
Gets the default <see cref="T:Narumikazuchi.Windows.Font"/> object (since default(Font) will result in Exceptions).
</summary>
</member>
<member name="P:Narumikazuchi.Windows.Font.Family">
<summary>
Gets the font family.
</summary>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="P:Narumikazuchi.Windows.Font.Size">
<summary>
Gets the font size.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.Font.Typeface">
<summary>
Gets the typeface of the font.
</summary>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="P:Narumikazuchi.Windows.Font.Stretch">
<summary>
Gets the font stretch.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.Font.Style">
<summary>
Gets the font style.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.Font.Weight">
<summary>
Gets the font weight.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.Font.Equals(Narumikazuchi.Windows.Font)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.Font.Equals(System.Object)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.Font.GetHashCode">
<inheritdoc/>
</member>
<member name="T:Narumikazuchi.Windows.FontPicker">
<summary>
Represents a window which can select a <see cref="T:Narumikazuchi.Windows.Font"/>.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.FontPicker.Show(System.Windows.Window)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.FontPicker"/> window and returns the <see cref="T:Narumikazuchi.Windows.Font"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.FontPicker"/>.</param>
<returns>The <see cref="T:Narumikazuchi.Windows.Font"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.FontPicker.Show(System.Windows.Window,Narumikazuchi.Windows.Font@)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.FontPicker"/> window and returns the <see cref="T:Narumikazuchi.Windows.Font"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.FontPicker"/>.</param>
<param name="initial">The initally selected <see cref="T:Narumikazuchi.Windows.Font"/>.</param>
<returns>The <see cref="T:Narumikazuchi.Windows.Font"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.FontPicker.Show(System.Windows.Window,System.Windows.Style)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.FontPicker"/> window and returns the <see cref="T:Narumikazuchi.Windows.Font"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.FontPicker"/>.</param>
<param name="withStyle">The style to apply to the <see cref="T:Narumikazuchi.Windows.FontPicker"/>.</param>
<returns>The <see cref="T:Narumikazuchi.Windows.Font"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.FontPicker.Show(System.Windows.Window,Narumikazuchi.Windows.Font@,System.Windows.Style)">
<summary>
Shows the <see cref="T:Narumikazuchi.Windows.FontPicker"/> window and returns the <see cref="T:Narumikazuchi.Windows.Font"/> the user selected.
</summary>
<param name="owner">The owning window of the <see cref="T:Narumikazuchi.Windows.FontPicker"/>.</param>
<param name="initial">The initally selected <see cref="T:Narumikazuchi.Windows.Font"/>.</param>
<param name="withStyle">The style to apply to the <see cref="T:Narumikazuchi.Windows.FontPicker"/>.</param>
<returns>The <see cref="T:Narumikazuchi.Windows.Font"/> the user selected or <see langword="null"/>, if the selection was cancelled.</returns>
<exception cref="T:System.ArgumentNullException"/>
</member>
<member name="M:Narumikazuchi.Windows.FontPicker.OnApplyTemplate">
<inheritdoc/>
</member>
<member name="F:Narumikazuchi.Windows.FontPicker.SelectedFontProperty">
<summary>
Identifies the <see cref="P:Narumikazuchi.Windows.FontPicker.SelectedFont"/> property.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.FontPicker.SelectedFont">
<summary>
Gets or sets the <see cref="T:Narumikazuchi.Windows.Font"/> that this picker has currently selected.
</summary>
</member>
<member name="T:Narumikazuchi.Windows.HslColor">
<summary>
Represents a color on the HSL color space.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.FromHsl(System.Double@,System.Double@,System.Double@)">
<summary>
Creates a new <see cref="T:Narumikazuchi.Windows.HslColor"/> from the specified values.
</summary>
<param name="h">The hue-component of the color.</param>
<param name="s">The saturation-component of the color.</param>
<param name="l">The light-component of the color.</param>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.FromRgb(System.Byte@,System.Byte@,System.Byte@)">
<summary>
Creates a new <see cref="T:Narumikazuchi.Windows.HslColor"/> from the specified values.
</summary>
<param name="r">The red-component of the RGB color space.</param>
<param name="g">The green-component of the RGB color space.</param>
<param name="b">The blue-component of the RGB color space.</param>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.FromHsv(System.Double@,System.Double@,System.Double@)">
<summary>
Creates a new <see cref="T:Narumikazuchi.Windows.HslColor"/> from the specified values.
</summary>
<param name="h">The hue-component of the color.</param>
<param name="s">The saturation-component of the color.</param>
<param name="v">The value-component of the color.</param>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.ToString">
<inheritdoc/>
</member>
<member name="P:Narumikazuchi.Windows.HslColor.H">
<summary>
Gets or sets the hue-component of this color.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.HslColor.S">
<summary>
Gets or sets the saturation-component of this color.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.HslColor.L">
<summary>
Gets or sets the light-component of this color.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.Equals(Narumikazuchi.Windows.HslColor)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.Equals(System.Object)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.HslColor.GetHashCode">
<inheritdoc/>
</member>
<member name="T:Narumikazuchi.Windows.HsvColor">
<summary>
Represents a color on the HSV color space.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.FromHsv(System.Double@,System.Double@,System.Double@)">
<summary>
Creates a new <see cref="T:Narumikazuchi.Windows.HsvColor"/> from the specified values.
</summary>
<param name="h">The hue-component of the color.</param>
<param name="s">The saturation-component of the color.</param>
<param name="v">The value-component of the color.</param>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.FromRgb(System.Byte@,System.Byte@,System.Byte@)">
<summary>
Creates a new <see cref="T:Narumikazuchi.Windows.HsvColor"/> from the specified values.
</summary>
<param name="r">The red-component of the RGB color space.</param>
<param name="g">The green-component of the RGB color space.</param>
<param name="b">The blue-component of the RGB color space.</param>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.FromHsl(System.Double@,System.Double@,System.Double@)">
<summary>
Creates a new <see cref="T:Narumikazuchi.Windows.HsvColor"/> from the specified values.
</summary>
<param name="h">The hue-component of the color.</param>
<param name="s">The saturation-component of the color.</param>
<param name="l">The light-component of the color.</param>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.ToString">
<inheritdoc/>
</member>
<member name="P:Narumikazuchi.Windows.HsvColor.H">
<summary>
Gets or sets the hue-component of this color.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.HsvColor.S">
<summary>
Gets or sets the saturation-component of this color.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.HsvColor.V">
<summary>
Gets or sets the value-component of this color.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.Equals(Narumikazuchi.Windows.HsvColor)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.Equals(System.Object)">
<inheritdoc/>
</member>
<member name="M:Narumikazuchi.Windows.HsvColor.GetHashCode">
<inheritdoc/>
</member>
<member name="T:Narumikazuchi.Windows.Utility">
<summary>
Contains helpers for the windows platform.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.Utility.SafeDispose``1(``0@)">
<summary>
Frees and disposes the <see cref="T:System.IDisposable"/> safely.
</summary>
<param name="disposable">The <see cref="T:System.IDisposable"/> to dispose.</param>
</member>
<member name="M:Narumikazuchi.Windows.Utility.SafeRelease``1(``0@)">
<summary>
Frees and releases COM-Objects.
</summary>
<param name="comObject">The COM-Object to release.</param>
</member>
<member name="M:Narumikazuchi.Windows.Utility.GetExitCodeDescription(System.Int32@)">
<summary>
Gets the description for the provided exit code.
</summary>
<param name="code">The exit code to get the description of.</param>
<returns>The description for the provided exit code or <see langword="null"/>, if there is no description for the exit code</returns>
</member>
<member name="P:Narumikazuchi.Windows.Utility.IsOSVistaOrNewer">
<summary>
Gets if the current version of windows is Windows Vista or newer.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.Utility.IsOSWindows7OrNewer">
<summary>
Gets if the current version of windows is Windows 7 or newer.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.Utility.IsOSWindows8OrNewer">
<summary>
Gets if the current version of windows is Windows 8 or newer.
</summary>
</member>
<member name="T:Narumikazuchi.Windows.WindowDockEventArgs">
<summary>
Contains the new <see cref="T:Narumikazuchi.Windows.WindowDockPosition"/> of the associated window.
</summary>
</member>
<member name="M:Narumikazuchi.Windows.WindowDockEventArgs.#ctor(Narumikazuchi.Windows.WindowDockPosition@)">
<summary>
Initializes a new instance of the <see cref="T:Narumikazuchi.Windows.WindowDockEventArgs"/> class.
</summary>
</member>
<member name="P:Narumikazuchi.Windows.WindowDockEventArgs.DockPosition">
<summary>
Gets the <see cref="T:Narumikazuchi.Windows.WindowDockPosition"/> of the associated window.
</summary>
</member>
<member name="T:Narumikazuchi.Windows.WindowDockPosition">
<summary>
The dock position of the window.
</summary>
</member>
<member name="F:Narumikazuchi.Windows.WindowDockPosition.Undocked">
<summary>
Not docked.
</summary>
</member>
<member name="F:Narumikazuchi.Windows.WindowDockPosition.Left">
<summary>
Window is docked to the left side of the display.
</summary>
</member>
<member name="F:Narumikazuchi.Windows.WindowDockPosition.Right">
<summary>
Window is docked to the right side of the display.
</summary>
</member>
</members>
</doc>