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
3333
3434 /// <summary>
3535 /// 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.
3638 /// </summary>
3739 public double MaxWidth
3840 {
@@ -51,6 +53,8 @@ public double MaxWidth
5153
5254 /// <summary>
5355 /// 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.
5458 /// </summary>
5559 public double MinWidth
5660 {
@@ -69,6 +73,8 @@ public double MinWidth
6973
7074 /// <summary>
7175 /// 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.
7278 /// </summary>
7379 public double MaxHeight
7480 {
@@ -87,6 +93,8 @@ public double MaxHeight
8793
8894 /// <summary>
8995 /// 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.
9098 /// </summary>
9199 public double MinHeight
92100 {
You can’t perform that action at this time.
0 commit comments