Greetings:
I used the methods described by Dr. Clay Burch in his article titled “Customizing the Windows Forms DataGrid”, the following link:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/wnf_CustDataGrid.asp
To summarize what I did (based on above method): I created a derived DataGridTextBoxColumn, which inherits from System.Windows.Forms.DataGridTextBoxColumn class overridden the Paint method. I added an event to this class so that it is fired to allow listeners to provide customized ForeColor and BackColor – based on CurrentCellValue - to be used for the cell being painted. A derived EventArgs provide the event listener with row index, column index, and CurrentCellValue values.
My problem: When I specify a format, using DataGridTextBoxColumn.Format property, for my derived DataGridTextBoxColumn, the values in the columns are displayed unformatted. Only when the cell receives the focus, the formatted value is displayed.
The same thing happens when apply format to downloaded sample code (provided through above link). I appreciate any solution and/or clue to resolve this problem.