datagrids (windows app)
In the particular column, I want the header title to be left justified but the values be right justified. I tried (txtColumnExample is the DataGridTextBoxColumn):
txtColumnExample.TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
This makes the values right justfied but also the header (which i dont want)
Any Ideas?
|