GridBorderStyle and XP

I use the following line to set the the line style to black. However on XP machines it shows up Blue. Is this a feature of XP? m_Grid.ColStyles(FROZEN_COL).Borders.Right = _ New GridBorder(m_Grid.Model.Options.DefaultGridBorderStyle.Standard, Color.Black, GridBorderWeight.Thick)

1 Reply

AD Administrator Syncfusion Team July 25, 2003 10:37 AM UTC

There is a property that controls the color of the line (border) between the frozen and non-frozen cells. I suspect this is what is coloring this border blue. Try setting: this.gridControl1.Model.Properties.FixedLinesColor = Color.Black;

Loader.
Up arrow icon