SystemPens.ButtonShadow 属性
定义
public:
static property System::Drawing::Pen ^ ButtonShadow { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen ButtonShadow { get; }
member this.ButtonShadow : System.Drawing.Pen
Public Shared ReadOnly Property ButtonShadow As Pen
属性值
Pen,它是三维元素的阴影颜色。A Pen that is the shadow color of a 3-D element.
示例
下面的代码示例演示如何使用 ButtonShadow 属性。The following code example demonstrates how to use the ButtonShadow property. 若要运行此示例,请将其粘贴到 Windows 窗体中。To run this example, paste it into a Windows Form. 处理窗体的 Paint 事件,并 DrawWithButtonShadowPen 从 Paint 事件处理方法调用方法,并将 e 作为传递 PaintEventArgs 。Handle the form's Paint event and call the DrawWithButtonShadowPen method from the Paint event-handling method, passing e as PaintEventArgs.
private void DrawWithButtonShadowPen(PaintEventArgs e)
{
Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
e.Graphics.DrawRectangle(SystemPens.ButtonShadow, rectangle1);
}
Private Sub DrawWithButtonShadowPen(ByVal e As PaintEventArgs)
Dim rectangle1 As New Rectangle(10, 10, 100, 100)
e.Graphics.DrawRectangle(SystemPens.ButtonShadow, rectangle1)
End Sub
注解
此颜色应用于三维元素背向光源的部分。This color is applied to parts of a 3-D element that face away from the light source.