This topic has not yet been rated - Rate this topic

VisualStyleElement.TreeView.Item.SelectedNotFocus Property

Gets a visual style element that represents a tree view item that is in the selected state but does not have focus.

Namespace: System.Windows.Forms.VisualStyles
Assembly: System.Windows.Forms (in system.windows.forms.dll)

public static VisualStyleElement SelectedNotFocus { get; }
/** @property */
public static VisualStyleElement get_SelectedNotFocus ()

public static function get SelectedNotFocus () : VisualStyleElement

Not applicable.

Property Value

A VisualStyleElement that represents a tree view item that is in the selected state but does not have focus.

You can use the VisualStyleElement returned by the SelectedNotFocus property to create a VisualStyleRenderer.

The following code example demonstrates how to create a VisualStyleRenderer with the VisualStyleElement returned by the SelectedNotFocus property. To run this example, paste it into a Windows Form. Handle the form’s Paint event and call the DrawVisualStyleElementTreeViewItem5 method from the Paint event-handling method, passing e as PaintEventArgs.

public void DrawVisualStyleElementTreeViewItem5(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.TreeView.Item.SelectedNotFocus))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.TreeView.Item.SelectedNotFocus);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.TreeView.Item.SelectedNotFocus",
             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));
}

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.