Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just want to define a trigger that changes a Label background color when focused, but it doesn't work. Doing the same with button is OK. Are there something wrong ?!?! I also got a same problem with Border and textblock.

Update code xaml:

  <Window.Resources>
    <SolidColorBrush x:Key="GridLineBrush" Color="#8DAED9" />
    <SolidColorBrush x:Key="HeaderWeekDayBackground" Color="#A5BFE1" />
    <Style x:Key="borderStyle" TargetType="Control">
      <Setter Property="Background" Value="{StaticResource HeaderWeekDayBackground}" />
      <Style.Triggers>
        <Trigger Property="IsFocused" Value="true">
          <Setter Property="Background" Value="Blue" />
        </Trigger>
      </Style.Triggers>
    </Style>
  </Window.Resources>

  <Grid>
    <Grid.RowDefinitions>
      <RowDefinition/>
      <RowDefinition/>
    </Grid.RowDefinitions>
    <Button Style="{StaticResource borderStyle}" 
        Grid.Row="0" >
    </Button>
    <Label Focusable="True" Style="{StaticResource borderStyle}" 
        Grid.Row="1" >
    </Label>
  </Grid>
</Window>
share|improve this question
How do you intend to give the Label focus? – H.B. Jul 12 '11 at 2:35

1 Answer

up vote 2 down vote accepted

Not all controls are focusable by default, set Focusable to true ans see if that helps.

One problem you might encounter is that by default the Label does not receive focus from mouse-events.

I do not know if there is a clean XAML-only way to set the focus but you could handle a mouse-event:

<Label Focusable="True" Content="Test" MouseLeftButtonUp="Label_MouseLeftButtonUp">
    <Label.Style>
        <Style TargetType="Label">
            <Style.Triggers>
                <Trigger Property="IsFocused" Value="True">
                    <Setter Property="Background" Value="Red" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </Label.Style>
</Label>
//Note that this is not a "proper" click.
private void Label_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
    var label = sender as Label;
    label.Focus();
}
share|improve this answer
It still not working after set focusable to true<Label Focusable="True" Style="{StaticResource borderStyle}" Grid.Row="1" > </Label> – DKhanh Jul 12 '11 at 2:24
Doesn't work, or does it? – H.B. Jul 12 '11 at 2:25
Please see my code above, it doesnt work. If label or border cant recevie focus from mouse, how to make it does? – DKhanh Jul 12 '11 at 2:35
See my comment to your question. – H.B. Jul 12 '11 at 2:36
yeah I see, so how to make it receive focus, I need it highlight after the mouse click – DKhanh Jul 12 '11 at 2:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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