vote up 2 vote down star

Hello folks!

I am trying to set padding of a StackPanel but there ain't such property. I tried StackPanel.Border, but there is no such property either.

Any ideas?

flag

4 Answers

vote up 2 vote down check

You could put a Border around the StackPanel and set a padding on that. I end up doing this a lot, since there are many UIElements that do not have a padding property.

<Border Padding="10">
<StackPanel>
...
</StackPanel>
</Border>

(Note: all FrameworkElements have a Margin property, which will space the element, but not include the margin width as part of the ActualWidth).

If you want to space the items inside a StackPanel, you'll want to add a margin to each child as Rob said.

link|flag
vote up 0 vote down

Could it be Margin you are looking for?

link|flag
vote up 1 vote down

You'll probably want to add margin to the items in the panel instead. You'll get the same result, just have to approach it backward.

link|flag
vote up 1 vote down

Or you could do something similar to TiM:

<Border>
<StackPanel Margin=10>
...
</StackPanel>
</Border>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.