VisualStyleElement.MenuBand.NewApplicationButton.Checked 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取表示处于选中状态的新应用程序按钮的视觉样式元素。
public:
static property System::Windows::Forms::VisualStyles::VisualStyleElement ^ Checked { System::Windows::Forms::VisualStyles::VisualStyleElement ^ get(); };
public static System.Windows.Forms.VisualStyles.VisualStyleElement Checked { get; }
static member Checked : System.Windows.Forms.VisualStyles.VisualStyleElement
Public Shared ReadOnly Property Checked As VisualStyleElement
属性值
VisualStyleElement,它表示处于选中状态的新应用程序按钮。
示例
下面的代码示例演示如何使用 VisualStyleElement 属性返回的 Checked 创建 VisualStyleRenderer 。 若要运行此示例,请将其粘贴到 Windows 窗体中。 处理窗体的 Paint 事件,并从Paint事件处理方法调用 DrawVisualStyleElementMenuBandNewApplicationButton5
方法,作为 e
PaintEventArgs传递。
public void DrawVisualStyleElementMenuBandNewApplicationButton5(PaintEventArgs e)
{
if (VisualStyleRenderer.IsElementDefined(
VisualStyleElement.MenuBand.NewApplicationButton.Checked))
{
VisualStyleRenderer renderer =
new VisualStyleRenderer(VisualStyleElement.MenuBand.NewApplicationButton.Checked);
Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
renderer.DrawBackground(e.Graphics, rectangle1);
e.Graphics.DrawString("VisualStyleElement.MenuBand.NewApplicationButton.Checked",
this.Font, Brushes.Black, new Point(10, 10));
}
else
e.Graphics.DrawString("This element is not defined in the current visual style.",
this.Font, Brushes.Black, new Point(10, 10));
}
Public Sub DrawVisualStyleElementMenuBandNewApplicationButton5(ByVal e As PaintEventArgs)
If (VisualStyleRenderer.IsElementDefined( _
VisualStyleElement.MenuBand.NewApplicationButton.Checked)) Then
Dim renderer As New VisualStyleRenderer _
(VisualStyleElement.MenuBand.NewApplicationButton.Checked)
Dim rectangle1 As New Rectangle(10, 50, 50, 50)
renderer.DrawBackground(e.Graphics, rectangle1)
e.Graphics.DrawString("VisualStyleElement.MenuBand.NewApplicationButton.Checked", _
Me.Font, Brushes.Black, New Point(10, 10))
Else
e.Graphics.DrawString("This element is not defined in the current visual style.", _
Me.Font, Brushes.Black, New Point(10, 10))
End If
End Sub
注解
可以使用 VisualStyleElement 属性返回 Checked 的 来创建 VisualStyleRenderer。