SystemPens.GradientInactiveCaption 属性

定义

获取表示非活动窗口标题栏的颜色渐变中最亮的颜色的 Pen

public:
 static property System::Drawing::Pen ^ GradientInactiveCaption { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen GradientInactiveCaption { get; }
static member GradientInactiveCaption : System.Drawing.Pen
Public Shared ReadOnly Property GradientInactiveCaption As Pen

属性值

Pen

一个 Pen,它是非活动窗口标题栏的颜色渐变中的最亮颜色。

示例

下面的代码示例演示如何使用 GradientInactiveCaption 属性。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的 Paint 事件,并从Paint事件处理方法调用 DrawWithGradientInactiveCaptionPen 方法,作为 ePaintEventArgs传递。

private void DrawWithGradientInactiveCaptionPen(PaintEventArgs e)
{
    Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
    e.Graphics.DrawRectangle(SystemPens.GradientInactiveCaption, rectangle1);
}
Private Sub DrawWithGradientInactiveCaptionPen(ByVal e As PaintEventArgs) 
    Dim rectangle1 As New Rectangle(10, 10, 100, 100)
    e.Graphics.DrawRectangle(SystemPens.GradientInactiveCaption, rectangle1)

End Sub

适用于