File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Microsoft.Toolkit.Uwp.UI/Triggers Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ public bool CanTrigger
33
33
34
34
/// <summary>
35
35
/// Gets or sets the max width at which to trigger.
36
+ /// This value is exclusive, meaning this trigger
37
+ /// could be active if the value is < MaxWidth.
36
38
/// </summary>
37
39
public double MaxWidth
38
40
{
@@ -51,6 +53,8 @@ public double MaxWidth
51
53
52
54
/// <summary>
53
55
/// Gets or sets the min width at which to trigger.
56
+ /// This value is inclusive, meaning this trigger
57
+ /// could be active if the value is >= MinWidth.
54
58
/// </summary>
55
59
public double MinWidth
56
60
{
@@ -69,6 +73,8 @@ public double MinWidth
69
73
70
74
/// <summary>
71
75
/// Gets or sets the max height at which to trigger.
76
+ /// This value is exclusive, meaning this trigger
77
+ /// could be active if the value is < MaxHeight.
72
78
/// </summary>
73
79
public double MaxHeight
74
80
{
@@ -87,6 +93,8 @@ public double MaxHeight
87
93
88
94
/// <summary>
89
95
/// Gets or sets the min height at which to trigger.
96
+ /// This value is inclusive, meaning this trigger
97
+ /// could be active if the value is >= MinHeight.
90
98
/// </summary>
91
99
public double MinHeight
92
100
{
You can’t perform that action at this time.
0 commit comments