If I am inserting elements into a wrap panel and there is still space in the panel before it overflows on the next line, can I specifically make it wrap over so that the subsequent elements are on the next line?
I am looking for something like this:
<WrapPanel> <Element/> <Element/> <NewLine???/> <Element/> <Element/> <Element/> </WrapPanel>
This works:
I have to add though… this is pretty much a hack. You might want to consider using a StackPanel, and inside of that, have a WrapPanel with the items you want to Wrap… Example: