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