diff --git a/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb b/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb
index 91ea19640da..222507f4620 100644
--- a/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb
+++ b/src/Microsoft.VisualBasic.Forms/src/Microsoft/VisualBasic/ApplicationServices/ApplyApplicationDefaultsEventArgs.vb
@@ -27,8 +27,9 @@ Namespace Microsoft.VisualBasic.ApplicationServices
End Sub
'''
- ''' Setting this property inside the event handler determines the
- ''' for the application.
+ ''' Setting this property inside the event handler determines the application's
+ ''' . Use this property to control whether the application
+ ''' uses dark mode, classic mode, or system default for its lifecycle.
'''
Public Property ColorMode As SystemColorMode
diff --git a/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs b/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs
index 8243c351cca..b4fdd989b60 100644
--- a/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs
+++ b/src/System.Windows.Forms/System/Windows/Forms/ScreenCaptureMode.cs
@@ -4,27 +4,25 @@
namespace System.Windows.Forms;
///
-/// Enumeration defining the behavior when a form or control is captured in a screenshot.
+/// Enumeration defining the behavior when a form is attempted to be captured in a screen capture (clipboard, image file),
+/// in a screen sharing video conference scenario, a video recording or the alike.
///
public enum ScreenCaptureMode
{
///
- /// The form or control can be captured normally in screenshots. Default.
+ /// The form can be captured normally in screen captures.
+ /// Default setting.
///
Allow = 0,
///
- /// The form or control appears blacked out in screenshots.
+ /// Only the form's content is hidden in screenshots.
+ /// The form's borders and title bar remain visible.
///
HideContent = 1,
///
- /// The form or control appears blurred in screenshots.
+ /// The whole form is invisible in screenshots.
///
- ///
- ///
- /// Using this option requires Windows 10 version 2004 or higher.
- ///
- ///
HideWindow = 2
}