views:

171

answers:

1

I have items wrapped in wrap panel. I want to move first line of items down by some offset.

Is it possible?

Thanks

+1  A: 

Try setting the Margin property of your WrapPanel...

Margin="0, 5, 0 ,0" (Left, Top, Right, Bottom)

HTH

Arcturus
To be more precise, I need to set top Padding
Dusan Kocurek
You can set the Margin of the First element, which translates to Padding seen from the WrapPanel...
Arcturus