Hi, I have an UltraCombo that shows horizontal lines that separate each item from the others. How can I remove or hide these lines?
Thank you
Hi mariela77,
You could achieve this through the following code:
private void ultraCombo1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
e.Layout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.None;
e.Layout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.None;
}
Please try it out and let me know if you need any additional assistance.
Thank you Boris for your quick answer!
It works PERFECTLY !
Mariela :-D