Hi all,
I am using Card View style ( composed ) for my WinGrid. It is fine and cover my requirements but I do not know how to remove gray header which appears on Card View style. I am not talking about header for columns which I want to see.
It is any way to remove this header ?
Reagrs
Piotr
Hi Piotr,
It sounds like you are talking about the card caption.You can turn it off like this:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Bands[0].CardView = true; e.Layout.Bands[0].CardSettings.ShowCaption = false; }