SystemPens.GradientActiveCaption 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取表示活动窗口标题栏的颜色渐变中最亮的颜色的 Pen。
public:
static property System::Drawing::Pen ^ GradientActiveCaption { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen GradientActiveCaption { get; }
static member GradientActiveCaption : System.Drawing.Pen
Public Shared ReadOnly Property GradientActiveCaption As Pen
属性值
一个 Pen,它是活动窗口标题栏的颜色渐变中的最亮颜色。
示例
下面的代码示例演示如何使用 GradientActiveCaption 属性。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的 Paint 事件,并从Paint事件处理方法调用 DrawWithGradientActiveCaptionPen
方法,作为 e
PaintEventArgs传递。
private void DrawWithGradientActiveCaptionPen(PaintEventArgs e)
{
Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
e.Graphics.DrawRectangle(SystemPens.GradientActiveCaption, rectangle1);
}
Private Sub DrawWithGradientActiveCaptionPen(ByVal e As PaintEventArgs)
Dim rectangle1 As New Rectangle(10, 10, 100, 100)
e.Graphics.DrawRectangle(SystemPens.GradientActiveCaption, rectangle1)
End Sub