Articles in this section
Category / Section

How to customize the border of the GridCell in WinForms DataGrid?

1 min read

You can change the cell border of WinForms DataGrid from solid-line to dotted-line by changing the BorderBrush of GridCell. In the following code example, GridCell.BorderBrush is set using DrawingBrush to display the dotted lines around the GridCell.

XAML

<Application.Resources>
<Style TargetType="syncfusion:GridCell">
<Setter Property="BorderBrush">
<Setter.Value>
<DrawingBrush Viewport="0,0,7,7" ViewportUnits="Absolute" TileMode="Tile">
<DrawingBrush.Drawing>
<DrawingGroup>
<GeometryDrawing Brush="Black">
<GeometryDrawing.Geometry>
<GeometryGroup>
<RectangleGeometry Rect="0,0,50,50" />
<RectangleGeometry Rect="50,50,50,50" />
</GeometryGroup>
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingGroup>
</DrawingBrush.Drawing>
</DrawingBrush>
</Setter.Value>
</Setter>
</Style>
</Application.Resources>

The following screenshot displays the SfDataGrid with dotted border.

C:\Users\ApoorvahR\Desktop\1.png

Figure 1: Customized border style

In the same way, you can customize the border of other elements in the SfDataGrid control.

You can refer to the following sample links to customize the border of the GridCell in the SfDataGrid.

Sample Link: CustomizeBorderOfGridCell_WPF


Conclusion

Hope you enjoyed learning about how to customize the border of the GridCell in WinForms DataGrid.

You can refer to our WinForms DataGrid feature tour page to learn about its other groundbreaking feature representations. You can explore our WinForms DataGrid documentation to understand how to present and manipulate data.

For current customers, you can check out our Angular components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our Angular Diagram and other Angular components.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied