-
Notifications
You must be signed in to change notification settings - Fork 21
/
WpfWindowToolkit.xml
835 lines (834 loc) · 40.2 KB
/
WpfWindowToolkit.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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
<?xml version="1.0"?>
<doc>
<assembly>
<name>WpfWindowToolkit</name>
</assembly>
<members>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.BindableBase">
<summary>
A class implemented the interface INotifyPropertyChanged.
</summary>
</member>
<member name="E:PraiseHim.Rejoice.WpfWindowToolkit.Base.BindableBase.PropertyChanged">
<summary>
PropertyChanged
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.BindableBase.OnPropertyChanged(System.String)">
<summary>
Notifies listeners that a property value has changed.
</summary>
<param name="propertyName">
Name of the property used to notify listeners. This
value is optional and can be provided automatically when invoked from compilers
that support <see cref="T:System.Runtime.CompilerServices.CallerMemberNameAttribute" />.
</param>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.BindableBase.Set``1(``0@,``0,System.String)">
<summary>
Checks if a property already matches a desired value. Sets the property and
notifies listeners only when necessary.
</summary>
<typeparam name="T">Type of the property.</typeparam>
<param name="storage">Reference to a property with both getter and setter.</param>
<param name="value">Desired value for the property.</param>
<param name="propertyName">
Name of the property used to notify listeners. This
value is optional and can be provided automatically when invoked from compilers that
support CallerMemberName.
</param>
<returns>
True if the value was changed, false if the existing value matched the
desired value.
</returns>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IClosable">
<summary>
Provides action to close a Window form its view model. In order to do so, that view modle should implement this interface.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.IClosable.CloseWindow">
<summary>
Get or set CloseWindow action, this action should be a method that could close the corresponding Window.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IOpenWindow">
<summary>
Provides property and method for opening a new Window.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.IOpenWindow.ShowWindow(PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo)">
<summary>
Open a window with the specific window info.
</summary>
<param name="openWindowInfo">The info of the window to be opened</param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IOpenWindow2`1">
<summary>
Provides property and method for opening a new Window and handling the value.
</summary>
<typeparam name="TReturnValue">The data type of the return value</typeparam>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.IOpenWindow2`1.ShowWindow(PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo,System.Action{`0})">
<summary>
Open a window with the specific window info, and handle the return value when the target window closed.
</summary>
<param name="openWindowInfo">The info of the window to be opened</param>
<param name="action">The <see cref="T:System.Action"/> to handle the return value</param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IOpenWindow2">
<summary>
Provides property and method for opening a new Window and handling the value.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.IOpenWindow2.ShowWindow(PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo,System.Action{System.Object})">
<summary>
Open a window with the specific window info, and handle the return value when the target window closed.
</summary>
<param name="openWindowInfo">The info of the window to be opened</param>
<param name="action">The <see cref="T:System.Action"/> to handle the return value</param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IView">
<summary>
Provides methods for handling what to do after a view loaded.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.IView.ViewLoaded">
<summary>
View loaded.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IView2">
<summary>
Provides methods for handling what to do after a view loaded and unloaded.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.IView2.ViewUnloaded">
<summary>
View unloaded.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IWindowReturnValue">
<summary>
Supports returning a value after a window closed.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.IWindowReturnValue.ReturnValue">
<summary>
Get or set the value to be returned.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IWindowReturnValue`1">
<summary>
Supports returning a value after a window closed.
</summary>
<typeparam name="T">The data type of return value</typeparam>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.IWindowReturnValue`1.ReturnValue">
<summary>
Get or set the value to be returned.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo">
<summary>
Identifies the info for a window to be opened.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo.IsModal">
<summary>
Get or set whether the windows is modal or not. The defalut value is true.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo.Parameter">
<summary>
Get or set the parameter to pass to the new window.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo.WindowType">
<summary>
Get or set the type of the window to be opened.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseEx">
<summary>
Provides the way to open a window.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseEx.ShowWindow(PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo)">
<summary>
Open a window with the specific window info.
</summary>
<param name="openWindowInfo">The info of the window to be opened.</param>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseEx.ShowWindow(PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo,System.Action{System.Object})">
<summary>
Open a window with the specific window info, and handle the return value when the target window closed.
</summary>
<param name="openWindowInfo">The info of the window to be opened.</param>
<param name="action">The <see cref="T:System.Action"/> to handle the return value.</param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseEx`1">
<summary>
Provides the way to open a window and return a value.
</summary>
<typeparam name="TReturnValue">The data type of the value to be returned.</typeparam>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseEx`1.ShowWindow(PraiseHim.Rejoice.WpfWindowToolkit.Base.OpenWindowInfo,System.Action{`0})">
<summary>
Open a window with the specific window info, and handle the return value when the target window closed.
</summary>
<param name="openWindowInfo">The info of the window to be opened</param>
<param name="action">The <see cref="T:System.Action"/> to handle the return value</param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseData`1">
<summary>
A view model base class, could receive data with the given data type.
</summary>
<typeparam name="T">The parameter data type.</typeparam>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseData`1.Data">
<summary>
Get or set the data that passed to this view model
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseData`1.InternalData">
<summary>
Get or set the data with a specifc type
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelRootBase">
<summary>
ViewModelRootBase, inherits from <see cref="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.BindableBase"/> which implements <see cref="T:System.ComponentModel.INotifyPropertyChanged"/>, can be the base class of view model.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelRootBase.Data">
<summary>
Get or set the data that passed to this view model
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction">
<summary>
An action that calls a method on a specified object when invoked.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction.MethodNameProperty">
<summary>
Identifies the <seealso cref="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction.MethodName"/> dependency property.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction.TargetObjectProperty">
<summary>
Identifies the <seealso cref="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction.TargetObject"/> dependency property.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction.MethodName">
<summary>
Gets or sets the name of the method to invoke. This is a dependency property.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CallMethodAction.TargetObject">
<summary>
Gets or sets the object that exposes the method of interest. This is a dependency property.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction">
<summary>
An action to close the specific TabItem of the specific TabControl.
Source: stackoverflow
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.ClosingCheckFuncProperty">
<summary>
ClosingCheckFuncProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabControlProperty">
<summary>
TabControlProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabItemProperty">
<summary>
TabItemProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.ClosingCheckFunc">
<summary>
Get or set a function that returns a boolean value indicating whether the <see cref="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabItem"/> can be closed or not
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabControl">
<summary>
Get or set the <see cref="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabControl"/> that possesses the target TabItem
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabItem">
<summary>
Get or set the <see cref="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.TabItem"/> to be closed
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseTabItemAction.Invoke(System.Object)">
<summary>
Override Invoke method
</summary>
<param name="parameter"></param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowAction">
<summary>
An action to close a Window.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowAction.ClosingCheckFuncProperty">
<summary>
ClosingCheckFuncProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowAction.ClosingCheckFunc">
<summary>
Get or set a function that returns a boolean value indicating whether the <see cref="T:System.Windows.Window"/> can be closed or not
</summary>
<remarks>If the result of function is true, the window can be closed, otherwise, cannot</remarks>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowAction.Invoke(System.Object)">
<summary>
Override Invoke method
</summary>
<param name="parameter"></param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowBehavior">
<summary>
A behavior for <see cref="T:System.Windows.Window"/> that can handle the closing event
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowBehavior.ClosingCheckFuncProperty">
<summary>
ClosingCheckFunc dp
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowBehavior.ClosingCheckFunc">
<summary>
Get or set a function that returns a boolean value indicating whether the <see cref="T:System.Windows.Window"/> can be closed or not
</summary>
<remarks>If the result of function is true, the window can be closed, otherwise, cannot</remarks>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowBehavior.OnAttached">
<summary>
When attached
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.CloseWindowBehavior.OnDetaching">
<summary>
When detaching
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ClosingWindowBehavior">
<summary>
A behavior for <see cref="T:System.Windows.Window"/> that can handle the closing event.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ClosingWindowBehavior.ClosingCheckFuncProperty">
<summary>
ClosingCheckFunc dp
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ClosingWindowBehavior.ClosingCheckFunc">
<summary>
Get or set a function that returns a boolean value indicating whether the <see cref="T:System.Windows.Window"/> can be closed or not.
</summary>
<remarks>If the result of function is true, the window can be closed, otherwise, cannot.</remarks>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ClosingWindowBehavior.OnAttached">
<summary>
When attached
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ClosingWindowBehavior.OnDetaching">
<summary>
When detaching
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.EnableWindowCloseBehavior">
<summary>
A behavior that enables to close a window in its view model, that view model should implement <see cref="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IClosable"/> interface, and invoke CloseWindow action in a proper place.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.EnableWindowCloseBehavior.OnAttached">
<summary>
When attached
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.EnableWindowCloseBehavior.OnDetaching">
<summary>
When detaching
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.EnableWindowCloseBehavior.AssignCloseWindowAction">
<summary>
Assign close action for CloseWindow action.
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.InvokeCommandAction">
<summary>
An action to invoke a <see cref="T:System.Windows.Input.ICommand"/>.
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.InvokeCommandAction.Command">
<summary>
Get or set the ICommand
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.InvokeCommandAction.CommandParameter">
<summary>
Get or set the parameter for the command
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.InvokeCommandAction.Invoke(System.Object)">
<summary>
Override Invoke method
</summary>
<param name="parameter"></param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction">
<summary>
An action that can show a control (mostly User Control) on the target TabControl as a new TabItem.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.AllowMultiInstanceProperty">
<summary>
AllowMultiInstanceProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TabItemHeaderTemplateProperty">
<summary>
TabItemHeaderTemplateProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TargetTabControlProperty">
<summary>
TargetTabControlProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TargetTitleProperty">
<summary>
TargetTitleProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TargetTypeProperty">
<summary>
TargetTypeProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.AllowMultiInstance">
<summary>
Allow multi instance, the defalut value is true
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TabItemHeaderTemplate">
<summary>
The header template of the the new tab item
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TargetTabControl">
<summary>
The target TabControl
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TargetTitle">
<summary>
The title of the new TabItem
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.TargetType">
<summary>
The type of the control that would be added on the target TabControl
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenTargetInTabControlAction.Invoke(System.Object)">
<summary>
Overrides Invoke method
</summary>
<param name="parameter"></param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction">
<summary>
Open a specified window, parameter can also be taken to pass to the new Window.
</summary>
<remarks>
Known issue:
1) When using this Action in MenuItem, it cannot invoke the CommandAfterClose command and MethodAfterClose
</remarks>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.CommandAfterCloseProperty">
<summary>
CommandAfterCloseProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.IsModalProperty">
<summary>
IsModalProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.MethodAfterCloseProperty">
<summary>
MethodAfterCloseProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.MethodOfTargetObjectProperty">
<summary>
MethodOfTargetObjectProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.ParameterProperty">
<summary>
ParameterProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.ChenckingFuncBeforeOpenningProperty">
<summary>
ChenckingFuncBeforeOpenning
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.WindowTypeProperty">
<summary>
WindowTypeProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.CommandAfterClose">
<summary>
Get or set the command to execute when the target window is closed
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.CommandBeforeOpen">
<summary>
Get or set the command to execute before the target window opens
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.CommandBeforeOpenProperty">
<summary>
CommandBeforeOpenProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.IsModal">
<summary>
Specify whether the windows is modal or not
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.MethodAfterClose">
<summary>
The name of the method that will be executed after the window closed
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.MethodOfTargetObject">
<summary>
The object that possesses the method MethodAfterClose, commonly it is a ViewModel
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.Parameter">
<summary>
The parameter need to pass to the new window
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.ChenckingFuncBeforeOpenning">
<summary>
Get or set a function that return a boolean value indicating whether the target window can be openned or not
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.WindowType">
<summary>
The type of the window to open
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.OpenWindowAction.Invoke(System.Object)">
<summary>
Overrides Invoke method
</summary>
<param name="parameter"></param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollingTrigger">
<summary>
A trigger that fires when scrolling to a specific element in a ScrollViewer.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollingTrigger.TargetElementProperty">
<summary>
TargetElementProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollingTrigger.TargetElement">
<summary>
The target element to scroll to
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollingTrigger.OnAttached">
<summary>
OnAttached
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollingTrigger.OnDetaching">
<summary>
OnDetaching
</summary>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollToTargetAction">
<summary>
An action that makes the specific ScrollViewer scrolls to the target element vertically.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollToTargetAction.ScrollViewerProperty">
<summary>
ScrollViewerProperty
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollToTargetAction.TargetElementProperty">
<summary>
TargetElementProperty
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollToTargetAction.ScrollViewer">
<summary>
The target ScrollViewer
</summary>
</member>
<member name="P:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollToTargetAction.TargetElement">
<summary>
The target element
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Behaviors.ScrollToTargetAction.Invoke(System.Object)">
<summary>
Overrides Invoke method
</summary>
<param name="parameter"></param>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Extensions.DependencyObjectExtensions">
<summary>
Extension methods for <see cref="T:System.Windows.DependencyObject"/>.
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Extensions.DependencyObjectExtensions.GetChild``1(System.Windows.DependencyObject,System.Func{``0,System.Boolean})">
<summary>
Get the first elment with the specific type and condition under the current element in visual tree.
</summary>
<typeparam name="T"/><peparam/>
<param name="p_element"></param>
<param name="p_func"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Extensions.DependencyObjectExtensions.GetChildren``1(System.Windows.DependencyObject,System.Func{``0,System.Boolean})">
<summary>
Get all the sub item with the specific type and condition
</summary>
<typeparam name="T"/><peparam/>
<param name="p_element"></param>
<param name="p_func"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Extensions.DependencyObjectExtensions.GetParent``1(System.Windows.DependencyObject)">
<summary>
Get the parent element matched the given type on the visual tree
</summary>
<typeparam name="T"></typeparam>
<param name="element"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Extensions.DependencyObjectExtensions.GetParent``1(System.Windows.DependencyObject,System.Func{``0,System.Boolean})">
<summary>
Get the parent element matched the given type on the visual tree by the specific condition
</summary>
<typeparam name="T"></typeparam>
<param name="element"></param>
<param name="p_func"></param>
<returns></returns>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper">
<summary>
WindowHelper, provides attached properties to do some operations on a window including open, maximize, minimize, etc.
</summary>
<remarks>Part of the code from here: https://coderelief.net/2010/04/19/wpf-window-disable-minimize-and-maximize-buttons-through-attached-properties-from-xaml/ </remarks>
<summary>
WindowHelper, provides attached properties to do some operations on a window including open, maximize, minimize, etc.
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.CanMaximize">
<summary>
CanMaximize attached property
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.GetCanMaximize(System.Windows.DependencyObject)">
<summary>
Get the value indicated whether the attached Window can be maximized
</summary>
<param name="d"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.SetCanMaximize(System.Windows.DependencyObject,System.Boolean)">
<summary>
Set the value indicated whether the attached Window can be maximized
</summary>
<param name="d"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.CanMinimize">
<summary>
CanMinimize attached property
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.GetCanMinimize(System.Windows.DependencyObject)">
<summary>
Get the value indicated whether the attached Window can be minimized
</summary>
<param name="d"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.SetCanMinimize(System.Windows.DependencyObject,System.Boolean)">
<summary>
Set the value indicated whether the attached Window can be minimized
</summary>
<param name="d"></param>
<param name="value"></param>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.CommandAfterCloseProperty">
<summary>
CommandAfterClose attached property
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.IsModalProperty">
<summary>
IsModal attached property
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.OpenWindowTypeProperty">
<summary>
OpenWindowType attached property
</summary>
</member>
<member name="F:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.ParameterProperty">
<summary>
Parameter attached property
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.GetCommandAfterClose(System.Windows.DependencyObject)">
<summary>
Get the <see cref="T:System.Windows.Input.ICommand"/> to be executed after the window closed
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.GetIsModal(System.Windows.DependencyObject)">
<summary>
Get the value that indicates whether the window is modal or not
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.GetOpenWindowType(System.Windows.DependencyObject)">
<summary>
Get the type of the window to open
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.GetParameter(System.Windows.DependencyObject)">
<summary>
Set the parameter to be passed to the ViewModel of the new window. Notice, that view model need inherits <see cref="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseData`1"/>
</summary>
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.SetCommandAfterClose(System.Windows.DependencyObject,System.Windows.Input.ICommand)">
<summary>
Set the <see cref="T:System.Windows.Input.ICommand"/> to be executed after the window closed
</summary>
<param name="obj"></param>
<param name="value"></param>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.SetIsModal(System.Windows.DependencyObject,System.Boolean)">
<summary>
Set the value that indicates whether the window is modal or not
</summary>
<param name="obj"></param>
<param name="value"></param>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.SetOpenWindowType(System.Windows.DependencyObject,System.Type)">
<summary>
Set the type of the window to open
</summary>
<param name="obj"></param>
<param name="value"></param>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Helpers.WindowHelper.SetParameter(System.Windows.DependencyObject,System.Object)">
<summary>
Get the parameter to be passed to the ViewModel of the new window. Notice, that view model need inherits <see cref="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.ViewModelBaseData`1"/>
</summary>
<param name="obj"></param>
<param name="value"></param>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.ApplicationHelper.GetWindow(System.Type)">
<summary>
</summary>
<param name="windowType"></param>
<returns>如果不存在,返回null,否则返回打开的窗口实例</returns>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.ReturnValueInfo">
<summary>
Indicates whether a window has value returned
</summary>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.AppWindow.GetCurrentActivatedWindow">
<summary>
Get the activated Window of the application.
</summary>
<returns></returns>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.AppWindow.TryGetReturnValue(System.Windows.Window)">
<summary>
Get the value of the ReturnValue property from the specified window's data context, see <see cref="T:PraiseHim.Rejoice.WpfWindowToolkit.Base.IWindowReturnValue"/> for more info.
</summary>
<param name="window"></param>
<returns></returns>
</member>
<member name="T:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController">
<summary>
WindowController
</summary>
<remarks>Code from here:https://coderelief.net/2010/04/19/wpf-window-disable-minimize-and-maximize-buttons-through-attached-properties-from-xaml/ </remarks>
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController.DisableMaximize(System.Windows.Window)">
<summary>
Disables the maximize functionality of a WPF window.
</summary>
The WPF window to be modified.
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController.DisableMinimize(System.Windows.Window)">
<summary>
Disables the minimize functionality of a WPF window.
</summary>
The WPF window to be modified.
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController.EnableMaximize(System.Windows.Window)">
<summary>
Enables the maximize functionality of a WPF window.
</summary>
The WPF window to be modified.
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController.EnableMinimize(System.Windows.Window)">
<summary>
Enables the minimize functionality of a WPF window.
</summary>
The WPF window to be modified.
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController.ToggleMaximize(System.Windows.Window)">
<summary>
Toggles the enabled state of a WPF window's maximize functionality.
</summary>
The WPF window to be modified.
</member>
<member name="M:PraiseHim.Rejoice.WpfWindowToolkit.Utilities.WindowController.ToggleMinimize(System.Windows.Window)">
<summary>
Toggles the enabled state of a WPF window's minimize functionality.
</summary>
The WPF window to be modified.
</member>
</members>
</doc>