Category / Section
How to set the border of any cells in grid or in GroupingBar items
It can be done by make use of the GridLineStroke and GroupingBarItemBorderBrush properties respectively. The following code explains the same.
C#
this.pivotGridControl1.GridLineStroke = new SolidColorBrush(Colors.Red); this.pivotGridControl1.GridOuterBorderBrush = new SolidColorBrush(Colors.Blue); this.pivotGridControl1.GroupingBarItemBorderBrush = new SolidColorBrush(Colors.Green); |