Hi,
I created a windows application with radribbonform. and i placed radgridview on that form and applied desert theme to radgridview and radribbonform also. Now i want to show vertical lines (sepertaes between columns). I applied below code what you gave previously.
But it is not displaying.
private void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
e.CellElement.BorderBottomWidth = 1;
e.CellElement.BorderBottomColor = Color.Red;
e.CellElement.BorderRightWidth = 1;
e.CellElement.BorderRightColor = Color.Blue;
//If you want to have a RadGridView with no lines at all
// e.CellElement.DrawBorder = false;
}
Please help me. thanks in advance.