Has anyone tried to figure out a way to round the outside corners of the grid? Most of the objects in our UI are rounded off, so I know it is only a matter of time before they want me to tackle the grid. Is this something you could do with a drawfilter? Are there any good examples out there?
Hello,
Could you please try setting the following:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched; }
Please feel free to let me know if I misunderstood you or if you have any other questions.