I have an ItemsControl which uses a Grid as the ItemsPanelTemplate, and sets the Grid.Column and Grid.Row on the ItemContainerStyle to position data items in the grid
Is there a way to either add GridLines to the Grid, or to fill in the blank cells with a Border?
Right now I have ShowGridLines set to True which makes the dotted lines, however I want Horizontal lines to show up, and I’d prefer solid GridLines

There is a rather large amount of XAML, but here’s a screenshot of how my XAML is laid out:

Sorry, styling the grid lines can’t be done. Atleast not in an easy way. See the following question for an explanation: How can I change the color of the gridlines of a Grid in WPF?
Edit: If you want the borders you can create a custom
Gridand draw theGridLinesinOnRendermethod of the control.I Tried it out and it seems to be working great.
Here an example of using: