Hello genius,
I have meet two problems when using UltraGrid:
gridBand.Override.SelectTypeRow = SelectType.None;
but it doesn't work, is there any property to set about not select the acive row?
2) Is there any property to set align the caption of the column header? I want align the text in the caption to middle. Usually it will be align to middle but sometimes will not work:-)
Thanks for help in advance! Any ideas are appreciated.
Alfonzoe
Thanks for your help and the problems have been solved.
1) You're confusing "row activation", which refers to the row that either directly has input focus or contains the cell that has input focus, with "row selection", which refers to one or many rows that have been selected for action. You can't disable row activation, but you can make it so that the row's appearance isn't changed to the user. In design view, go to DisplayLayout.Override, right click the "ActiveRowAppearance" property, and select "Reset". Alternately, you can set both the DisplayLayout.Override.ActiveRowAppearance.ForeColor and DisplayLayout.Override.ActiveRowAppearance.BackColor properties to "Color.Empty" in code.
2) There are a number of places where this can be set. The one that would affect the whole grid is the DisplayLayout.Override.HeaderAppearance.TextHAlign property. This can also be set off the band's Override.HeaderAppearance.TextHAlign property, and the column's Header.Appearance.TextHAlign property, each taking precedence over the earlier ones.