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
765
WinCombo - eliminating lines between rows
posted

I've tried so many properties to no avail.  In my drop-down box there are lines or borders that seperate each row.  How do I turn this off?

  • 469350
    Suggested Answer
    Offline posted


            private void ultraCombo1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                UltraGridOverride ov = e.Layout.Override;
                ov.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.None;
                ov.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.None;
            }