DataGrid Column Style

  • Thread starter Thread starter Henry Scarberry
  • Start date Start date
H

Henry Scarberry

I am using a DataGrid control bound to a DataTable to display computed
values.

I am building the the datatable with code and then populating it with the
computed results.

How do I control the column with and number format?

Regards-

Henry
 
Column width is a public property of the DataGridColumnStyle class
Number format: add an expression-based column and populate it with
preformatted data, then bind it to datagrid
 
Back
Top