as I can do to make the effect "MERGE" in one column or two columns, but not all the columns in the grid
thanks
Hello Carlos,
Yes, this is possible.
You could hook to the InitializeLayout event of the WinGrid and choose the merge style for a particular column, like this:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Bands[0].Columns[1].MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always; }
Please do not hesitate to contact me if you need any additional assistance.
Thanks for everything, l probe and I came, it was just what I wanted for my form.