Posted 31 July 2025, 5:44 pm EST - Updated 31 July 2025, 5:49 pm EST
I modified the FlexGrid demo app’s Getting Started view by setting the border and grid line colors and thickness in the GettingStarted.xaml (see below). The thickness works, the border is visible around the grid and the cells but the border color doesn’t change. What am I doing wrong?
<c1:FlexGrid x:Name="grid" FontFamily="ShantellSans" AutoGeneratingColumn="OnAutoGeneratingColumn"
BorderBrush="Black"
BorderThickness="10"
GridLinesWidth="5"
ColumnHeaderGridLinesBrush="Black"
ColumnHeaderBackground="AliceBlue"
ColumnHeaderGridLinesVisibility="All"
GridLinesBrush="Black"
GridLinesVisibility="All"
Background="LightGreen"
AlternatingRowBackground="Yellow"
/>