Skip to content

Commit c35b79a

Browse files
Fix comments per review suggestions.
1 parent 4078032 commit c35b79a

File tree

1 file changed

+10
-3
lines changed
  • src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal

1 file changed

+10
-3
lines changed

src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/DropDownButton.cs

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,20 @@ public DropDownButton()
1818
SetAccessibleName();
1919
}
2020

21-
// If a control uses it needs it in the context of rendering
22-
// something in dark mode - this flag needs to be set.
21+
/// <summary>
22+
/// Indicates whether the control should be rendered in dark mode.
23+
/// Set this property if you use this class for a control in dark mode.
24+
/// </summary>
2325
public bool RequestDarkModeRendering { get; set; }
2426

27+
/// <summary>
28+
/// Gets or sets the style used for rendering the control button.
29+
/// </summary>
2530
public ModernControlButtonStyle ControlButtonStyle { get; set; }
2631

27-
// When the holder is open, we don't fire clicks.
32+
/// <summary>
33+
/// Gets or sets a value indicating whether mouse events should be ignored when the holder is open.
34+
/// </summary>
2835
public bool IgnoreMouse { get; set; }
2936

3037
/// <summary>

0 commit comments

Comments
 (0)