Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Visual Style Element Browser

0.00/5 (No votes)
12 Feb 2008 1  
A simple tree which exposes the different VisualStyleElements available in NET 2.0
VisualElementBrowser

Introduction

I wrote this small utility app while working on the custom 'tree with columns' control, which you can see used in this same app. There is really not much to it, but I figured it might be useful for others working on custom controls.

A VisualStyleElement is a UI element exposed by the system and can be used by any custom control to draw a system control or element. In the case of the tree control, the visual element is used to draw the column and row headers.

More information regarding the visual styles can be found in System.Windows.Forms.VisualStyles namespace and here.

The only part that was a little tricky was to populate the tree. All elements are defined as nested static classes within VisualStyleElement (check it out with Reflector). After a little bit of trial and error I found it to be quite simple though, get the nested types and for each type get the static properties, and do this recursive. The code for this is in VisulalStyleTreeV1.AddType(type).

To paint the style in the tree, I created a derived class of CellPainter and overwrote PaintCell for the Style column (fieldname called image for this column !?)

And that is all.

Revision History

  • 2/12/2008: V1 uploaded
    A workaround fix for the hanging issue when running release. I don't understand why it would go into an infinite loop when run in release (but not when run in release from debugger), but the issue was resolved by moving 2 variables out of the CompareColorByBrightness method.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here