Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
790
Grid with Rounded Corners
posted

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?

Parents
No Data
Reply
  • 71886
    Offline posted

    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.

Children
No Data