vote up 1 vote down star

I am currently doing this, but I am doing something wrong :):

   <Style TargetType="{x:Type Button}">
      <Setter Property="MinWidth" Value="90" />
      <Setter Property="Width" Value="Auto" />
   </Style>

I want the buttons to have some minimum width but also to have their width expand to fit the text of the button.

flag

2 Answers

vote up 0 vote down

If you just set MinWidth of button and if your text width is bigger than min width it will automatically expand, but in reverse case button will be same with your min width,

<Style TargetType="{x:Type Button}"> <Setter Property="MinWidth" Value="90" /> </Style>

that is enough to archive to required result

link|flag
hmm why didn't it work then... Could a containing element's style be messing with the buttons? They are still stretching to fill... – GordonG Sep 11 at 7:35
Ahhh.. I had to add: <Setter Property="HorizontalAlignment" Value="Center" /> The stack panels were setting them to stretch, I believe. – GordonG Sep 11 at 7:47
vote up 0 vote down check

What you have to do is set the HorizontalAlignment property to Center (or Right or Left). The buttons must be getting stretched by the containing Panel.

   <Style TargetType="{x:Type Button}">
      <Setter Property="MinWidth" Value="90" />
      <Setter Property="HorizontalAlignment" Value="Center" />
   </Style>
link|flag

Your Answer

Get an OpenID
or

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