views:

100

answers:

2

I have the following style defined...

<!-- Blue Button -->
<Style x:Key="BlueButton" TargetType="{x:Type Button}">
  <Setter Property="OverridesDefaultStyle" Value="True"/>
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="Button">                   
     <Border Name="border" 
        BorderThickness="2"
        Padding="4,2" 
        CornerRadius="5" 
        BorderBrush="{TemplateBinding BorderBrush}"
        Background="{TemplateBinding Background}">
      <Grid >
        <ContentPresenter 
        HorizontalAlignment="Center" 
        VerticalAlignment="Center" 
        Name="content"/>
      </Grid>
    </Border>
    <ControlTemplate.Triggers>
      <Trigger Property="IsMouseOver" Value="True">
        <Setter Property="Background" Value="{DynamicResource BlueGradientOver}"/>
        <Setter Property="BorderBrush" Value="White"/>
      </Trigger>
      <Trigger Property="IsEnabled" Value="False">
        <Setter Property="Background" Value="Black"/>
        <Setter Property="BorderBrush" Value="White"/>
        <!-- how do I set the BorderThickness here? -->
        <Setter Property="Foreground" Value="White"/>
      </Trigger>             
      <Trigger Property="IsPressed" Value="True">
        <Setter Property="Background" Value="{DynamicResource BlueGradient4}"/>
        <Setter Property="BorderBrush" Value="{DynamicResource BlueGradient1}"/>
      </Trigger>
    </ControlTemplate.Triggers>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
  <Setter Property="SnapsToDevicePixels" Value="true"/>
  <Setter Property="FocusVisualStyle" Value="{StaticResource ButtonFocusVisual}"/>
  <Setter Property="Background" Value="{DynamicResource BlueGradient1}"/>
  <Setter Property="BorderBrush" Value="{DynamicResource BlueGradient2}"/>
  <Setter Property="Foreground" Value="White"/>
  <Setter Property="HorizontalContentAlignment" Value="Center"/>
  <Setter Property="VerticalContentAlignment" Value="Center"/>
  <Setter Property="TextBox.TextAlignment" Value="Center"/>  
  <Setter Property="FontFamily" Value="Trebuchet MS"/>
  <Setter Property="FontSize" Value="15pt"/>
  <Setter Property="Effect" Value="{DynamicResource KioskStandardDropShadow}" />
  <Setter Property="IsEnabled" Value="True"/>
</Style>

I'd like to change the BorderThickness property when a button is disabled, but I can't figure out how to do it.

A: 

Have you tried Expression Blend 4? It has a very nice intuitive UI for dealing with behaviors and triggers and activities directly on the XAML. You should give it a try! Generating all that code will probably take you 5 minutes (including your border).

Michel Triana
slomojo
+2  A: 

In your control template you are setting the BorderThickness to be 2! It should be:

UPDATED

<!-- Blue Button --> 
<Style x:Key="BlueButton" TargetType="{x:Type Button}"> 
  <Setter Property="OverridesDefaultStyle" Value="True"/> 
  <Setter Property="BorderThickness" Value="2" />
  <Setter Property="Template"> 
    <Setter.Value> 
      <ControlTemplate TargetType="Button">                    
    <Border Name="border"  
        BorderThickness="{TemplateBinding BorderThickness}"  
        Padding="4,2"  
        CornerRadius="5"  
        BorderBrush="{TemplateBinding BorderBrush}" 
        Background="{TemplateBinding Background}"> 
      <Grid > 
        <ContentPresenter  
        HorizontalAlignment="Center"  
        VerticalAlignment="Center"  
        Name="content"/> 
      </Grid> 
    </Border> 
    <ControlTemplate.Triggers> 
      <Trigger Property="IsMouseOver" Value="True"> 
        <Setter Property="Background" Value="{DynamicResource BlueGradientOver}"/> 
        <Setter Property="BorderBrush" Value="White"/> 
      </Trigger> 
      <Trigger Property="IsEnabled" Value="False"> 
        <Setter Property="Background" Value="Black"/> 
        <Setter Property="BorderBrush" Value="White"/> 
        <Setter Property="BorderThickness" Value="10" /> 
        <Setter Property="Foreground" Value="White"/> 
      </Trigger>              
      <Trigger Property="IsPressed" Value="True"> 
        <Setter Property="Background" Value="{DynamicResource BlueGradient4}"/> 
        <Setter Property="BorderBrush" Value="{DynamicResource BlueGradient1}"/> 
      </Trigger> 
    </ControlTemplate.Triggers> 
      </ControlTemplate> 
    </Setter.Value> 
  </Setter> 
  <Setter Property="SnapsToDevicePixels" Value="true"/> 
  <Setter Property="FocusVisualStyle" Value="{StaticResource ButtonFocusVisual}"/> 
  <Setter Property="Background" Value="{DynamicResource BlueGradient1}"/> 
  <Setter Property="BorderBrush" Value="{DynamicResource BlueGradient2}"/> 
  <Setter Property="Foreground" Value="White"/> 
  <Setter Property="HorizontalContentAlignment" Value="Center"/> 
  <Setter Property="VerticalContentAlignment" Value="Center"/> 
  <Setter Property="TextBox.TextAlignment" Value="Center"/>   
  <Setter Property="FontFamily" Value="Trebuchet MS"/> 
  <Setter Property="FontSize" Value="15pt"/> 
  <Setter Property="Effect" Value="{DynamicResource KioskStandardDropShadow}" /> 
  <Setter Property="IsEnabled" Value="True"/> 
</Style> 
rudigrobler
Thanks, how do I set it on triggers and defaults?
slomojo
the trigger can then be set as expected -> <Setter Property="BorderThickness" Value="20" />
rudigrobler
And the default should be set at the top (Where you currently have OverridesDefaultStyle) - Similar to how its done in the trigger!
rudigrobler
Updated the sample!
rudigrobler
Thanks, I knew what to do after you mentioned the TemplateBinding, I just wanted a full answer for future searches.
slomojo
@rudigrobler Thank you for updating the answer. You helped me understand what's going on in Templates.
slomojo