Skip to content

Commit e62eb8b

Browse files
authored
Improving comments
1 parent cdf48d0 commit e62eb8b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Microsoft.Toolkit.Uwp.UI/Triggers/ControlSizeTrigger.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)