Click here to Skip to main content
Click here to Skip to main content

FlagColumn Outlook Style

By , 3 Feb 2007
 

Sample image

Introduction

The DataGridViewFlagColumn inherits the existing System.Windows.Forms.DataGridViewImageColumn. It paints the backcolor and chooses the image depending on the value you give the cell. In this code, I use a Flag enumeration of four possible values:

Public Enum Flag As Integer
    Blank = 0
    Red = 1
    Blue = 2
    Yellow = 3
End Enum 

If you create more flag icons, you can extend this enumeration. There also is an ErrorIcon supplied: this icon will be drawn if the value of the cell does not match one of the enumeration values.

The code has two classes: DataGridViewFlagColumn with just one member:

Public NotInheritable Class DataGridViewFlagColumn
    Inherits DataGridViewImageColumn

    Public Sub New()
        Me.CellTemplate = New DataGridViewFlagCell
        ...
    End Sub

End Class

In the constructor, I assign the CellTemplate to the second class: DataGridViewFlagCell, which inherits from System.Windows.Forms.DataGridViewImageCell. This class has some basic methods and functions: it retrieves the right icon and the right backcolor, and the Paint method will use them to paint the cells.

This class also provides a different backcolor when the mouse enters/leaves the cell. Have fun!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Star Vega
Software Developer
Belgium Belgium
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionno paint flags Pinmemberfarey20003 Apr '13 - 9:28 
Generalsocket programming C#.net Pinmembernagasrinivas24 Feb '08 - 20:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 4 Feb 2007
Article Copyright 2007 by Star Vega
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid