Click here to Skip to main content
Licence 
First Posted 23 Apr 2003
Views 96,283
Bookmarked 24 times

Formatting the Datarow based on a single cell value and Custom Table Styles.

By | 28 Apr 2003 | Article
An article that demonstrates row formatting and adding custom styles to the designer.

Sample Image - article1.jpg

Introduction

In this article I want to show you how to change the format of a single DataRow in the grid, based on the value of a single cell in that row.

Also, I will attempt to explain the process of adding custom styles to the Styles collection of your Datagrid collection editor, so that you can use them in the DataGrid at design time.

You can look at http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q1020q for more information on this topic.

Using the code

To control the formatting of a single row, based on the value of a cell, you have to do the following:

  1. Derive from the DataGridTextBoxColumn.
    public class FormattedTextBoxColumn : DataGridTextBoxColumn 
    { 
        public CellPaint _handle ; 
        public CellPaint PaintHandle 
        { 
            get 
            { 
                return _handle ; 
            } 
            set 
            { 
                _handle = value; 
            } 
        } 
        ...; 
        ...;
    }
    
    
  2. Override the 4 paint methods of the DataGridTextBox column.
    protected override void Paint(Graphics g,Rectangle Bounds,
                                  CurrencyManager Source,int RowNum,
                                  Brush BackBrush ,Brush ForeBrush ,
                                  bool AlignToRight)
    {
       Object data = ( Object ) GetColumnValueAtRow(Source, RowNum);    
       String strData ; 
       strData = data.ToString() ; 
    
       FormatEventArgs e = new FormatEventArgs(RowNum) ;
     
       if( _handle != null) 
        _handle(new object(),ref e) ; 
            
       g.FillRectangle(e.BackBrush, Bounds.X, 
            Bounds.Y, Bounds.Width, Bounds.Height);
                
       FontStyle fs = FontStyle.Regular ; 
       if( e.strikeThrough == true ) 
       { 
         fs = FontStyle.Strikeout ; 
       }
       System.Drawing.Font font = new 
               Font(System.Drawing.FontFamily.GenericSansSerif, 
               (float)8.25 ,fs);
       g.DrawString( strData ,font ,Brushes.Green ,
               Bounds.X ,Bounds.Y );
    
    }
  3. Define a delegate, to be called from the paint functions ( The ones you override )
    public delegate void CellPaint(object o, ref FormatEventArgs e);
  4. Define a class, which derives from EventArgs, call this FormatEventArgs, and which will be used to pass information back to the delegate.
    public class FormatEventArgs : EventArgs  { 
     ... ; 
     ... ; 
    }

To add the custom style to the designer, you need to:

  1. Create a custom Datagrid, which derives from the DataGrid ( user defined control )
    public class CustomDataGrid : DataGrid { 
      ....
    }
    1. Hide the data member, GridTableStylesCollection of the DataGrid like this:
      [Editor(typeof(CustomTableStylesCollectionEditor), 
                    typeof(UITypeEditor))]
      public new GridTableStylesCollection TableStyles
      {
         get{return base.TableStyles;}
      }

      This is the data member which returns the Table Style collection in your designer. Hide it, so that you can return your own type.

    2. Create an internal class, which derives from the CollectionEditor, and override the function CreateNewItemTypes, which will now return your custom styles.
      private class CustomTableStylesCollectionEditor : 
                                                CollectionEditor
      {
        public CustomTableStylesCollectionEditor
                             (Type type):base(type)
        {
        }
              
        //Over ride the function which will return 
        //the STYLES collection 
      
        protected override System.Type[] CreateNewItemTypes()
        {
          // refer to POINT 2
          return new Type[] {typeof(CustomStylesCollection)}; 
        } 
      }
  2. Create a custom DataGridTableStyle, which is derived from the DataGridTableStyle.
    public class CustomStylesCollection : DataGridTableStyle
    {
        ... ; 
        ... ;
    }
    1. Now, hide the data member GridColumnStylesCollection, this member shows the default ColumnStyles available at design time.
      Editor(typeof(CustomColumnStylesCollectionEditor), 
                       typeof(UITypeEditor))]
      public new GridColumnStylesCollection GridColumnStyles
      {
        get {return base.GridColumnStyles;}
      }

      and,

      protected override DataGridColumnStyle 
            CreateGridColumn(PropertyDescriptor prop, bool isDefault)
      {
          return base.CreateGridColumn(prop, isDefault);
      }
    2. Create an internal class which derives from the CollectionEditor, and override the function CreateNewItemTypes, which will now return your custom styles.
      private class CustomColumnStylesCollectionEditor : 
                                      CollectionEditor
      {
        public CustomColumnStylesCollectionEditor(Type type) : 
                                           base(type)
        {
        }
      
        protected override System.Type[] CreateNewItemTypes()
        {
         return new Type[] 
         {    
           typeof(FormattedTextBoxColumn), // Your Custom Style 
           typeof(DataGridTextBoxColumn),  // Default Style
           typeof(DataGridBoolColumn)      // Default Style
         }; 
        } 
      }

Once you build the project, the CustomDataGrid, should be available in your Toolbox.

In your Form application, drop this CustomDataGrid. Then use the designer to add column styles to the DataGrid.

I attempted to expose the PaintHandler, in the properties box, but for some reason, it won't let me hook the delegate there.

If some one has any ideas to how I could do it, please let me know.

For now, manually hook the delegate like this:

formattedTextBoxColumn1.PaintHandle += new CellPaint(PaintHandler) ;

And, define the function PaintHandler, which will allow customized handling of your formats.

public void PaintHandler( object o, ref FormatEventArgs e) 
{ 
  try 
  { 
    FormatEventArgs E = (FormatEventArgs) e ; 
    int rowNum = E.RowNum ; 
        DataRow dr = ds.Tables["table"].Rows[rowNum] ; 
                 
    if( dr[0].ToString() == "X" || dr[0].ToString() == "x") 
    {
       E.BackBrush = Brushes.Beige; 
       E.strikeThrough = true ; 
    }
    else 
    {
      E.BackBrush = Brushes.White ; 
    }
                
                
  }
  catch( System.SystemException ) 
  { 
  } 
}

You would need to declare all the column styles for the DataGrid of type FormattedTextBoxColumn, and hook each style to the function.

I hope this helps.

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

About the Author

Sameer Khan

Architect

United States United States

Member



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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalworks great Pinmemberstrother10:38 26 Feb '09  
Questionoriginal code? Pinmembercoolest_dude9:38 18 Apr '06  
GeneralCustomDataGrid not available in Toolbox Pinmemberdaniel_at_mcgarry.com10:59 3 Jan '06  
GeneralMaster - Detail - no default key inserted PinmemberChristianL20041:26 13 Jan '05  
QuestionSorry to be dumb but how do I use this? Pinmemberskintstudent5:07 22 Apr '04  
AnswerRe: Sorry to be dumb but how do I use this? PinmemberSameer Khan11:36 22 Apr '04  
GeneralRe: Sorry to be dumb but how do I use this? Pinmemberskintstudent3:21 28 Apr '04  
GeneralRe: Sorry to be dumb but how do I use this? Pinmemberskintstudent22:28 28 Apr '04  
QuestionHow to change column caption font in datagrid PinsussAnonymous9:27 26 Mar '04  
GeneralSelecting complete row PinmemberJoerg Eichhorn6:52 20 Jan '04  
GeneralRe: Selecting complete row PinmemberSameer Khan14:33 20 Jan '04  
GeneralRe: Selecting complete row PinmemberJoerg Eichhorn0:33 21 Jan '04  
GeneralRe: Selecting complete row Pinmemberstudent_rhr7:19 13 Jan '06  
GeneralUsing this grid and colors in vb Pinmemberpoojamin11:49 18 Jul '03  
GeneralRe: Using this grid and colors in vb PinmemberSameer Khan19:37 21 Jul '03  
GeneralRe: Using this grid and colors in vb Pinmemberpoojamin13:41 22 Jul '03  
GeneralFormatting incorrect when columns are sorted PinmemberM.Lansdaal9:52 30 Apr '03  
GeneralRe: Formatting incorrect when columns are sorted PinmemberSameer Khan12:34 30 Apr '03  
GeneralRe: Formatting incorrect when columns are sorted PinmemberM.Lansdaal7:14 11 Aug '03  
GeneralRe: Formatting incorrect when columns are sorted PinmemberSameer Khan11:40 31 Jul '03  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 29 Apr 2003
Article Copyright 2003 by Sameer Khan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid