This is a line break in a WrapPanel:
<WrapPanel>
<TextBlock Text="
"/>
</WrapPanel>
Update
I think I figured out what you're trying to ask. If you have a WrapPanel that is laying out by row, and you want to force it to the next row, you can replace the single WrapPanel with
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<!-- items -->
</StackPanel>
<StackPanel Orientation="Horizontal">
<!-- items -->
</StackPanel>
<StackPanel Orientation="Horizontal">
<!-- items -->
</StackPanel>
</StackPanel>
If you want to preserve wrapping of individual rows, you can use WrapPanels inside the vertical StackPanel.