-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMahApps.Metro.xml
8287 lines (8278 loc) · 438 KB
/
MahApps.Metro.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
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>MahApps.Metro</name>
</assembly>
<members>
<member name="T:ControlzEx.KeyboardNavigationEx">
<summary>
Helper class for a common focusing problem.
The focus itself isn't the problem. If we use the common focusing methods the control get the focus
but it doesn't get the focus visual style.
The KeyboardNavigation class handles the visual style only if the control get the focus from a keyboard
device or if the SystemParameters.KeyboardCues is true.
</summary>
</member>
<member name="P:ControlzEx.KeyboardNavigationEx.Instance">
<summary>
Gets the KeyboardNavigationEx singleton instance.
</summary>
</member>
<member name="M:ControlzEx.KeyboardNavigationEx.ShowFocusVisualInternal">
<summary>
Shows the focus visual of the current focused UI element.
Works only together with AlwaysShowFocusVisual property.
</summary>
</member>
<member name="M:ControlzEx.KeyboardNavigationEx.Focus(System.Windows.UIElement)">
<summary>
Focuses the specified element and shows the focus visual style.
</summary>
<param name="element">The element which will be focused.</param>
</member>
<member name="F:ControlzEx.KeyboardNavigationEx.AlwaysShowFocusVisualProperty">
<summary>
Attached DependencyProperty for setting AlwaysShowFocusVisual for a UI element.
</summary>
</member>
<member name="M:ControlzEx.KeyboardNavigationEx.GetAlwaysShowFocusVisual(System.Windows.UIElement)">
<summary>
Gets a the value which indicates if the UI element always show the focus visual style.
</summary>
</member>
<member name="M:ControlzEx.KeyboardNavigationEx.SetAlwaysShowFocusVisual(System.Windows.UIElement,System.Boolean)">
<summary>
Sets a the value which indicates if the UI element always show the focus visual style.
</summary>
</member>
<member name="T:MahApps.Metro.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:MahApps.Metro.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:MahApps.Metro.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="T:MahApps.Metro.Behaviours.BorderlessWindowBehavior">
<summary>
With this class we can make custom window styles.
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.BorderlessWindowBehavior._ModifyStyle(Standard.WS,Standard.WS)">
<summary>Add and remove a native WindowStyle from the HWND.</summary>
<param name="removeStyle">The styles to be removed. These can be bitwise combined.</param>
<param name="addStyle">The styles to be added. These can be bitwise combined.</param>
<returns>Whether the styles of the HWND were modified as a result of this call.</returns>
<SecurityNote>
Critical : Calls critical methods
</SecurityNote>
</member>
<member name="M:MahApps.Metro.Behaviours.GlowWindowBehavior.Update">
<summary>
Updates all glow windows (visible, hidden, collapsed)
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.GlowWindowBehavior.SetOpacityTo(System.Double)">
<summary>
Sets the opacity to all glow windows
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.GlowWindowBehavior.StartOpacityStoryboard">
<summary>
Starts the opacity storyboard 0 -> 1
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.GlowWindowBehavior.Show">
<summary>
Shows all glow windows
</summary>
</member>
<member name="F:MahApps.Metro.Behaviours.PasswordBoxBindingBehavior.PasswordProperty">
<summary>
Gets or sets the bindable Password property on the PasswordBox control. This is a dependency property.
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.PasswordBoxBindingBehavior.OnPasswordPropertyChanged(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Handles changes to the 'Password' attached property.
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.PasswordBoxBindingBehavior.PasswordBoxPasswordChanged(System.Object,System.Windows.RoutedEventArgs)">
<summary>
Handle the 'PasswordChanged'-event on the PasswordBox
</summary>
</member>
<member name="M:MahApps.Metro.Behaviours.PasswordBoxBindingBehavior.OnAttached">
<summary>
Called after the behavior is attached to an AssociatedObject.
</summary>
<remarks>
Override this to hook up functionality to the AssociatedObject.
</remarks>
</member>
<member name="M:MahApps.Metro.Behaviours.PasswordBoxBindingBehavior.OnDetaching">
<summary>
Called when the behavior is being detached from its AssociatedObject, but before it has actually occurred.
</summary>
<remarks>
Override this to unhook functionality from the AssociatedObject.
</remarks>
</member>
<member name="T:MahApps.Metro.Behaviours.TabControlSelectFirstVisibleTabBehavior">
<summary>
<para>
Sets the first TabItem with Visibility="<see cref="F:System.Windows.Visibility.Visible"/>" as
the SelectedItem of the TabControl.
</para>
<para>
If there is no visible TabItem, null is set as the SelectedItem
</para>
</summary>
</member>
<member name="T:MahApps.Metro.Controls.ClipBorder">
<summary>
Represents a border whose contents are clipped within the bounds
of the border. The border may have rounded corners.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.ClipBorder.BorderThicknessProperty">
<summary>
BorderThickness Dependency Property
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ClipBorder.BorderThickness">
<summary>
Gets or sets the BorderThickness property. This dependency property
indicates the BorderThickness.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.OnValidateThickness(System.Object)">
<summary>
Checks if the given Thickness is valid or not
</summary>
<param name="value">Thickness</param>
<returns></returns>
</member>
<member name="F:MahApps.Metro.Controls.ClipBorder.PaddingProperty">
<summary>
Padding Dependency Property
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ClipBorder.Padding">
<summary>
Gets or sets the Padding property. This dependency property
indicates the Padding.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.ClipBorder.CornerRadiusProperty">
<summary>
CornerRadius Dependency Property
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ClipBorder.CornerRadius">
<summary>
Gets or sets the CornerRadius property. This dependency property
indicates the CornerRadius of the border.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.OnValidateCornerRadius(System.Object)">
<summary>
Checks if the given CornerRadius is valid or not
</summary>
<param name="value">CornerRadius</param>
<returns></returns>
</member>
<member name="F:MahApps.Metro.Controls.ClipBorder.BorderBrushProperty">
<summary>
BorderBrush Dependency Property
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ClipBorder.BorderBrush">
<summary>
Gets or sets the BorderBrush property. This dependency property
indicates the BorderBrush with which the Border is drawn.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.ClipBorder.BackgroundProperty">
<summary>
Background Dependency Property
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ClipBorder.Background">
<summary>
Gets or sets the Background property. This dependency property
indicates the Background with which the Background is drawn.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.ClipBorder.OptimizeClipRenderingProperty">
<summary>
OptimizeClipRendering Dependency Property
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ClipBorder.OptimizeClipRendering">
<summary>
Gets or sets the OptimizeClipRendering property. This dependency property
indicates whether the rendering of the clip should be optimized. When set to true,
In order to optimize the rendering of the clipped Child,
the background is rendered with the same brush as the border. Any other brush set for
the background will be ignored. The Child will be rendered on top of it.
This is done to prevent any gaps between the border the the clipped Child (this is
evidently visible if both the Border and the Child are of same color).
This works best when the Child does not have any level of transparency and is opaque.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.MeasureOverride(System.Windows.Size)">
<summary>
Updates DesiredSize of the ClipBorder. Called by parent UIElement. This is the first pass of layout.
</summary>
<remarks>
Border determines its desired size it needs from the specified border the child: its sizing
properties, margin, and requested size.
</remarks>
<param name="constraint">Constraint size is an "upper limit" that the return value should not exceed.</param>
<returns>The Decorator's desired size.</returns>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.ArrangeOverride(System.Windows.Size)">
<summary>
ClipBorder computes the position of its single child and applies its child's alignments to the child.
</summary>
<param name="finalSize">The size reserved for this element by the parent</param>
<returns>The actual ink area of the element, typically the same as finalSize</returns>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.OnRender(System.Windows.Media.DrawingContext)">
<summary>
Here the ClipBorder's Child, Border and Background are rendered.
</summary>
<param name="dc">Drawing Context</param>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.GenerateGeometry(System.Windows.Media.StreamGeometryContext,System.Windows.Rect,MahApps.Metro.Controls.ClipBorder.BorderInfo)">
<summary>
Generates a StreamGeometry.
</summary>
<param name="ctx">An already opened StreamGeometryContext.</param>
<param name="rect">Rectangle for geomentry conversion.</param>
<param name="borderInfo">The core points of the border which needs to be used to create
the geometry</param>
<returns>Result geometry.</returns>
</member>
<member name="M:MahApps.Metro.Controls.ClipBorder.BorderInfo.#ctor(System.Windows.CornerRadius,System.Windows.Thickness,System.Windows.Thickness,System.Boolean)">
<summary>
Encapsulates the details of each of the core points of the border which is calculated
based on the given CornerRadius, BorderThickness, Padding and a flag to indicate whether
the inner or outer border is to be calculated.
</summary>
<param name="corners">CornerRadius</param>
<param name="borders">BorderThickness</param>
<param name="padding">Padding</param>
<param name="isOuterBorder">Flag to indicate whether outer or inner border needs
to be calculated</param>
</member>
<member name="T:MahApps.Metro.Controls.Utils">
<summary>
A few very useful extension methods
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsCloseTo(System.Double,System.Double)">
<summary>
Returns whether or not two doubles are "close".
</summary>
<param name="value1"> The first double to compare. </param>
<param name="value2"> The second double to compare. </param>
<returns>
bool - the result of the AreClose comparision.
</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsLessThan(System.Double,System.Double)">
<summary>
Returns whether or not the first double is less than the second double.
</summary>
<param name="value1"> The first double to compare. </param>
<param name="value2"> The second double to compare. </param>
<returns>
bool - the result of the LessThan comparision.
</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsGreaterThan(System.Double,System.Double)">
<summary>
Returns whether or not the first double is greater than the second double.
</summary>
<param name="value1"> The first double to compare. </param>
<param name="value2"> The second double to compare. </param>
<returns>
bool - the result of the GreaterThan comparision.
</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsOne(System.Double)">
<summary>
Returns whether or not the double is "close" to 1. Same as AreClose(double, 1),
but this is faster.
</summary>
<param name="value"> The double to compare to 1. </param>
<returns>
bool - the result of the AreClose comparision.
</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsZero(System.Double)">
<summary>
IsZero - Returns whether or not the double is "close" to 0. Same as AreClose(double, 0),
but this is faster.
</summary>
<param name="value"> The double to compare to 0. </param>
<returns>
bool - the result of the AreClose comparision.
</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsCloseTo(System.Windows.Point,System.Windows.Point)">
<summary>
Compares two points for fuzzy equality. This function
helps compensate for the fact that double values can
acquire error when operated upon
</summary>
<param name='point1'>The first point to compare</param>
<param name='point2'>The second point to compare</param>
<returns>Whether or not the two points are equal</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsCloseTo(System.Windows.Size,System.Windows.Size)">
<summary>
Compares two Size instances for fuzzy equality. This function
helps compensate for the fact that double values can
acquire error when operated upon
</summary>
<param name='size1'>The first size to compare</param>
<param name='size2'>The second size to compare</param>
<returns>Whether or not the two Size instances are equal</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsCloseTo(System.Windows.Vector,System.Windows.Vector)">
<summary>
Compares two Vector instances for fuzzy equality. This function
helps compensate for the fact that double values can
acquire error when operated upon
</summary>
<param name='vector1'>The first Vector to compare</param>
<param name='vector2'>The second Vector to compare</param>
<returns>Whether or not the two Vector instances are equal</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsCloseTo(System.Windows.Rect,System.Windows.Rect)">
<summary>
Compares two rectangles for fuzzy equality. This function
helps compensate for the fact that double values can
acquire error when operated upon
</summary>
<param name='rect1'>The first rectangle to compare</param>
<param name='rect2'>The second rectangle to compare</param>
<returns>Whether or not the two rectangles are equal</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsNaN(System.Double)">
<summary>
Faster check for NaN ( faster than double.IsNaN() )
IEEE 754 : If the argument is any value in the range 0x7ff0000000000001L through 0x7fffffffffffffffL
or in the range 0xfff0000000000001L through 0xffffffffffffffffL, the result will be NaN.
</summary>
<param name="value">Value to check</param>
<returns></returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.RoundLayoutValue(System.Double,System.Double)">
<summary>
Rounds the given value based on the DPI scale
</summary>
<param name="value">Value to round</param>
<param name="dpiScale">DPI Scale</param>
<returns></returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsValid(System.Windows.Thickness,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Verifies if this Thickness contains only valid values
The set of validity checks is passed as parameters.
</summary>
<param name='thick'>Thickness value</param>
<param name='allowNegative'>allows negative values</param>
<param name='allowNaN'>allows Double.NaN</param>
<param name='allowPositiveInfinity'>allows Double.PositiveInfinity</param>
<param name='allowNegativeInfinity'>allows Double.NegativeInfinity</param>
<returns>Whether or not the thickness complies to the range specified</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.CollapseThickness(System.Windows.Thickness)">
<summary>
Method to add up the left and right size as width, as well as the top and bottom size as height
</summary>
<param name="thick">Thickness</param>
<returns>Size</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsZero(System.Windows.Thickness)">
<summary>
Verifies if the Thickness contains only zero values
</summary>
<param name="thick">Thickness</param>
<returns>Size</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsUniform(System.Windows.Thickness)">
<summary>
Verifies if all the values in Thickness are same
</summary>
<param name="thick">Thickness</param>
<returns>true if yes, otherwise false</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsValid(System.Windows.CornerRadius,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Verifies if this CornerRadius contains only valid values
The set of validity checks is passed as parameters.
</summary>
<param name='corner'>CornerRadius value</param>
<param name='allowNegative'>allows negative values</param>
<param name='allowNaN'>allows Double.NaN</param>
<param name='allowPositiveInfinity'>allows Double.PositiveInfinity</param>
<param name='allowNegativeInfinity'>allows Double.NegativeInfinity</param>
<returns>Whether or not the CornerRadius complies to the range specified</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsZero(System.Windows.CornerRadius)">
<summary>
Verifies if the CornerRadius contains only zero values
</summary>
<param name="corner">CornerRadius</param>
<returns>Size</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsUniform(System.Windows.CornerRadius)">
<summary>
Verifies if the CornerRadius contains same values
</summary>
<param name="corner">CornerRadius</param>
<returns>true if yes, otherwise false</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.Deflate(System.Windows.Rect,System.Windows.Thickness)">
<summary>
Deflates rectangle by given thickness
</summary>
<param name="rect">Rectangle</param>
<param name="thick">Thickness</param>
<returns>Deflated Rectangle</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.Inflate(System.Windows.Rect,System.Windows.Thickness)">
<summary>
Inflates rectangle by given thickness
</summary>
<param name="rect">Rectangle</param>
<param name="thick">Thickness</param>
<returns>Inflated Rectangle</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsOpaqueSolidColorBrush(System.Windows.Media.Brush)">
<summary>
Verifies if the given brush is a SolidColorBrush and
its color does not include transparency.
</summary>
<param name="brush">Brush</param>
<returns>true if yes, otherwise false</returns>
</member>
<member name="M:MahApps.Metro.Controls.Utils.IsEqualTo(System.Windows.Media.Brush,System.Windows.Media.Brush)">
<summary>
Verifies if the given brush is the same as the otherBrush.
</summary>
<param name="brush">Brush</param>
<param name="otherBrush">Brush</param>
<returns>true if yes, otherwise false</returns>
</member>
<member name="M:MahApps.Metro.Controls.CloseCommand.CanExecute(System.Object)">
<summary>
Defines the method that determines whether the command can execute in its current state.
</summary>
<returns>
true if this command can be executed; otherwise, false.
</returns>
<param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
</member>
<member name="M:MahApps.Metro.Controls.CloseCommand.Execute(System.Object)">
<summary>
Defines the method to be called when the command is invoked.
</summary>
<param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
</member>
<member name="F:MahApps.Metro.Controls.ContentControlEx.ContentCharacterCasingProperty">
<summary>
The DependencyProperty for the CharacterCasing property.
Controls whether or not content is converted to upper or lower case
Default Value: CharacterCasing.Normal
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ContentControlEx.ContentCharacterCasing">
<summary>
Character casing of the Content
</summary>
</member>
<member name="F:MahApps.Metro.Controls.ContentControlEx.RecognizesAccessKeyProperty">
<summary>
The DependencyProperty for the RecognizesAccessKey property.
Default Value: false
</summary>
</member>
<member name="P:MahApps.Metro.Controls.ContentControlEx.RecognizesAccessKey">
<summary>
Determine if the inner ContentPresenter should use AccessText in its style
</summary>
</member>
<member name="T:MahApps.Metro.Controls.CustomValidationPopup">
<summary>
This custom popup is used by the validation error template.
It provides some additional nice features:
- repositioning if host-window size or location changed
- repositioning if host-window gets maximized and vice versa
- it's only topmost if the host-window is activated
</summary>
</member>
<member name="P:MahApps.Metro.Controls.CustomValidationPopup.CloseOnMouseLeftButtonDown">
<summary>
Gets/sets if the popup can be closed by left mouse button down.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.DataGridNumericUpDownColumn.PrepareCellForEdit(System.Windows.FrameworkElement,System.Windows.RoutedEventArgs)">
<summary>
Called when a cell has just switched to edit mode.
</summary>
<param name="editingElement">A reference to element returned by GenerateEditingElement.</param>
<param name="editingEventArgs">The event args of the input event that caused the cell to go into edit mode. May be null.</param>
<returns>The unedited value of the cell.</returns>
</member>
<member name="M:MahApps.Metro.Controls.DataGridNumericUpDownColumn.SyncColumnProperty(System.Windows.DependencyObject,MahApps.Metro.Controls.NumericUpDown,System.Windows.DependencyProperty,System.Windows.DependencyProperty)">
<summary>
Synchronizes the column property. Taken from Helper code for DataGrid.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.DataGridNumericUpDownColumn.IsDefaultValue(System.Windows.DependencyObject,System.Windows.DependencyProperty)">
<summary>
Taken from Helper code for DataGrid.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontFamilyProperty">
<summary>
The DependencyProperty for the FontFamily property.
Default Value: SystemFonts.MessageFontFamily
</summary>
</member>
<member name="P:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontFamily">
<summary>
The font family of the desired font.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontSizeProperty">
<summary>
The DependencyProperty for the FontSize property.
Default Value: SystemFonts.MessageFontSize
</summary>
</member>
<member name="P:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontSize">
<summary>
The size of the desired font.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontStyleProperty">
<summary>
The DependencyProperty for the FontStyle property.
Default Value: SystemFonts.MessageFontStyle
</summary>
</member>
<member name="P:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontStyle">
<summary>
The style of the desired font.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontWeightProperty">
<summary>
The DependencyProperty for the FontWeight property.
Default Value: SystemFonts.MessageFontWeight
</summary>
</member>
<member name="P:MahApps.Metro.Controls.DataGridNumericUpDownColumn.FontWeight">
<summary>
The weight or thickness of the desired font.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.DataGridNumericUpDownColumn.ForegroundProperty">
<summary>
The DependencyProperty for the Foreground property.
Default Value: SystemColors.ControlTextBrush
</summary>
</member>
<member name="P:MahApps.Metro.Controls.DataGridNumericUpDownColumn.Foreground">
<summary>
An brush that describes the foreground color. This overrides the cell foreground inherited color.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.DataGridNumericUpDownColumn.NotifyPropertyChangeForRefreshContent(System.Windows.DependencyObject,System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Method used as property changed callback for properties which need RefreshCellContent to be called
</summary>
</member>
<member name="T:MahApps.Metro.Controls.Dialogs.BaseMetroDialog">
<summary>
The base class for dialogs.
You probably don't want to use this class, if you want to add arbitrary content to your dialog,
use the <see cref="T:MahApps.Metro.Controls.Dialogs.CustomDialog"/> class.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.Title">
<summary>
Gets/sets the dialog's title.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.DialogTop">
<summary>
Gets/sets arbitrary content on top of the dialog.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.DialogBottom">
<summary>
Gets/sets arbitrary content below the dialog.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.DialogTitleFontSize">
<summary>
Gets or sets the size of the dialog title font.
</summary>
<value>
The size of the dialog title font.
</value>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.DialogMessageFontSize">
<summary>
Gets or sets the size of the dialog message font.
</summary>
<value>
The size of the dialog message font.
</value>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.#ctor(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Initializes a new MahApps.Metro.Controls.BaseMetroDialog.
</summary>
<param name="owningWindow">The window that is the parent of the dialog.</param>
<param name="settings">The settings for the message dialog.</param>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.#ctor">
<summary>
Initializes a new MahApps.Metro.Controls.BaseMetroDialog.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.ConfigureSettings(MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
With this method it's possible to return your own settings in a custom dialog.
</summary>
<param name="settings"></param>
<returns></returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.OnLoaded">
<summary>
This is called in the loaded event.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.WaitForLoadAsync">
<summary>
Waits for the dialog to become ready for interaction.
</summary>
<returns>A task that represents the operation and it's status.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.RequestCloseAsync">
<summary>
Requests an externally shown Dialog to close. Will throw an exception if the Dialog is inside of a MetroWindow.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.OnRequestClose">
<summary>
A last chance virtual method for stopping an external dialog from closing.
</summary>
<returns></returns>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.ParentDialogWindow">
<summary>
Gets the window that owns the current Dialog IF AND ONLY IF the dialog is shown externally.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.OwningWindow">
<summary>
Gets the window that owns the current Dialog IF AND ONLY IF the dialog is shown inside of a window.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.WaitUntilUnloadedAsync">
<summary>
Waits until this dialog gets unloaded.
</summary>
<returns></returns>
</member>
<member name="T:MahApps.Metro.Controls.Dialogs.MetroDialogSettings">
<summary>
A class that represents the settings used by Metro Dialogs.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.AffirmativeButtonText">
<summary>
Gets/sets the text used for the Affirmative button. For example: "OK" or "Yes".
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.NegativeButtonText">
<summary>
Gets/sets the text used for the Negative button. For example: "Cancel" or "No".
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.ColorScheme">
<summary>
Gets/sets whether the metro dialog should use the default black/white appearance (theme) or try to use the current accent.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.AnimateShow">
<summary>
Enable/disable dialog showing animation.
"True" - play showing animation.
"False" - skip showing animation.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.AnimateHide">
<summary>
Enable/disable dialog hiding animation
"True" - play hiding animation.
"False" - skip hiding animation.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.DefaultText">
<summary>
Gets/sets the default text( just the inputdialog needed)
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.MaximumBodyHeight">
<summary>
Gets/sets the maximum height. (Default is unlimited height, <a href="http://msdn.microsoft.com/de-de/library/system.double.nan">Double.NaN</a>)
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.DefaultButtonFocus">
<summary>
Gets or sets which button should be focused by default
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.CancellationToken">
<summary>
Gets/sets the token to cancel the dialog.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.CustomResourceDictionary">
<summary>
Gets/sets a custom resource dictionary which can contains custom styles, brushes or something else.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.SuppressDefaultResources">
<summary>
If set, stops standard resource dictionaries being applied to the dialog.
</summary>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.DialogTitleFontSize">
<summary>
Gets or sets the size of the dialog title font.
</summary>
<value>
The size of the dialog title font.
</value>
</member>
<member name="P:MahApps.Metro.Controls.Dialogs.MetroDialogSettings.DialogMessageFontSize">
<summary>
Gets or sets the size of the dialog message font.
</summary>
<value>
The size of the dialog message font.
</value>
</member>
<member name="T:MahApps.Metro.Controls.Dialogs.MetroDialogColorScheme">
<summary>
An enum representing the different choices for a color scheme in a Metro Dialog.
</summary>
</member>
<member name="T:MahApps.Metro.Controls.Dialogs.CustomDialog">
<summary>
An implementation of BaseMetroDialog allowing arbitrary content.
</summary>
</member>
<member name="F:MahApps.Metro.Controls.Dialogs.DialogCoordinator.Instance">
<summary>
Gets the default instance if the dialog coordinator, which can be injected into a view model.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowLoginAsync(MahApps.Metro.Controls.MetroWindow,System.String,System.String,MahApps.Metro.Controls.Dialogs.LoginDialogSettings)">
<summary>
Creates a LoginDialog inside of the current window.
</summary>
<param name="window">The window that is the parent of the dialog.</param>
<param name="title">The title of the LoginDialog.</param>
<param name="message">The message contained within the LoginDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowInputAsync(MahApps.Metro.Controls.MetroWindow,System.String,System.String,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a InputDialog inside of the current window.
</summary>
<param name="window">The MetroWindow</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowMessageAsync(MahApps.Metro.Controls.MetroWindow,System.String,System.String,MahApps.Metro.Controls.Dialogs.MessageDialogStyle,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a MessageDialog inside of the current window.
</summary>
<param name="window">The MetroWindow</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="style">The type of buttons to use.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>A task promising the result of which button was pressed.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowProgressAsync(MahApps.Metro.Controls.MetroWindow,System.String,System.String,System.Boolean,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a ProgressDialog inside of the current window.
</summary>
<param name="window">The MetroWindow</param>
<param name="title">The title of the ProgressDialog.</param>
<param name="message">The message within the ProgressDialog.</param>
<param name="isCancelable">Determines if the cancel button is visible.</param>
<param name="settings">Optional Settings that override the global metro dialog settings.</param>
<returns>A task promising the instance of ProgressDialogController for this operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowMetroDialogAsync(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Adds a Metro Dialog instance to the specified window and makes it visible asynchronously.
If you want to wait until the user has closed the dialog, use <see cref="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.WaitUntilUnloadedAsync"/>
<para>You have to close the resulting dialog yourself with <see cref="M:MahApps.Metro.Controls.Dialogs.DialogManager.HideMetroDialogAsync(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)"/>.</para>
</summary>
<param name="window">The owning window of the dialog.</param>
<param name="dialog">The dialog instance itself.</param>
<param name="settings">An optional pre-defined settings instance.</param>
<returns>A task representing the operation.</returns>
<exception cref="T:System.InvalidOperationException">The <paramref name="dialog"/> is already visible in the window.</exception>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowMetroDialogAsync``1(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Adds a Metro Dialog instance of the given type to the specified window and makes it visible asynchronously.
If you want to wait until the user has closed the dialog, use <see cref="M:MahApps.Metro.Controls.Dialogs.BaseMetroDialog.WaitUntilUnloadedAsync"/>
<para>You have to close the resulting dialog yourself with <see cref="M:MahApps.Metro.Controls.Dialogs.DialogManager.HideMetroDialogAsync(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)"/>.</para>
</summary>
<param name="window">The owning window of the dialog.</param>
<param name="settings">An optional pre-defined settings instance.</param>
<returns>A task with the dialog representing the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.HideMetroDialogAsync(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Hides a visible Metro Dialog instance.
</summary>
<param name="window">The window with the dialog that is visible.</param>
<param name="dialog">The dialog instance to hide.</param>
<param name="settings">An optional pre-defined settings instance.</param>
<returns>A task representing the operation.</returns>
<exception cref="T:System.InvalidOperationException">
The <paramref name="dialog"/> is not visible in the window.
This happens if <see cref="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowMetroDialogAsync(MahApps.Metro.Controls.MetroWindow,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)"/> hasn't been called before.
</exception>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.GetCurrentDialogAsync``1(MahApps.Metro.Controls.MetroWindow)">
<summary>
Gets the current shown dialog in async way.
</summary>
<param name="window">The dialog owner.</param>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowModalLoginExternal(MahApps.Metro.Controls.MetroWindow,System.String,System.String,MahApps.Metro.Controls.Dialogs.LoginDialogSettings)">
<summary>
Creates a LoginDialog outside of the current window.
</summary>
<param name="window">The window that is the parent of the dialog.</param>
<param name="title">The title of the LoginDialog.</param>
<param name="message">The message contained within the LoginDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowModalInputExternal(MahApps.Metro.Controls.MetroWindow,System.String,System.String,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a InputDialog outside of the current window.
</summary>
<param name="window">The MetroWindow</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.DialogManager.ShowModalMessageExternal(MahApps.Metro.Controls.MetroWindow,System.String,System.String,MahApps.Metro.Controls.Dialogs.MessageDialogStyle,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a MessageDialog ouside of the current window.
</summary>
<param name="window">The MetroWindow</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="style">The type of buttons to use.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>A task promising the result of which button was pressed.</returns>
</member>
<member name="T:MahApps.Metro.Controls.Dialogs.IDialogCoordinator">
<summary>
Use the dialog coordinator to help you interfact with dialogs from a view model.
</summary>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowInputAsync(System.Object,System.String,System.String,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Shows the input dialog.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowModalInputExternal(System.Object,System.String,System.String,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Shows the input dialog.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowLoginAsync(System.Object,System.String,System.String,MahApps.Metro.Controls.Dialogs.LoginDialogSettings)">
<summary>
Creates a LoginDialog inside of the current window.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the LoginDialog.</param>
<param name="message">The message contained within the LoginDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowModalLoginExternal(System.Object,System.String,System.String,MahApps.Metro.Controls.Dialogs.LoginDialogSettings)">
<summary>
Creates a LoginDialog outside of the current window.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the LoginDialog.</param>
<param name="message">The message contained within the LoginDialog.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>The text that was entered or null (Nothing in Visual Basic) if the user cancelled the operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowMessageAsync(System.Object,System.String,System.String,MahApps.Metro.Controls.Dialogs.MessageDialogStyle,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a MessageDialog inside of the current window.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="style">The type of buttons to use.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>A task promising the result of which button was pressed.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowModalMessageExternal(System.Object,System.String,System.String,MahApps.Metro.Controls.Dialogs.MessageDialogStyle,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a MessageDialog outside of the current window.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the MessageDialog.</param>
<param name="message">The message contained within the MessageDialog.</param>
<param name="style">The type of buttons to use.</param>
<param name="settings">Optional settings that override the global metro dialog settings.</param>
<returns>A task promising the result of which button was pressed.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowProgressAsync(System.Object,System.String,System.String,System.Boolean,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Creates a ProgressDialog inside of the current window.
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>
<param name="title">The title of the ProgressDialog.</param>
<param name="message">The message within the ProgressDialog.</param>
<param name="isCancelable">Determines if the cancel button is visible.</param>
<param name="settings">Optional Settings that override the global metro dialog settings.</param>
<returns>A task promising the instance of ProgressDialogController for this operation.</returns>
</member>
<member name="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.ShowMetroDialogAsync(System.Object,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)">
<summary>
Adds a Metro Dialog instance to the specified window and makes it visible asynchronously.
<para>You have to close the resulting dialog yourself with <see cref="M:MahApps.Metro.Controls.Dialogs.IDialogCoordinator.HideMetroDialogAsync(System.Object,MahApps.Metro.Controls.Dialogs.BaseMetroDialog,MahApps.Metro.Controls.Dialogs.MetroDialogSettings)"/>.</para>
</summary>
<param name="context">Typically this should be the view model, which you register in XAML using <see cref="M:MahApps.Metro.Controls.Dialogs.DialogParticipation.SetRegister(System.Windows.DependencyObject,System.Object)"/>.</param>