vote up 2 vote down star

I am setting the .Content value of a Label to a string that contains underscores; the first underscore is being interpreted as an accelerator key.

Without changing the underlying string (by replacing all _ with __), is there a way to disable the accelerator for Labels?

flag

4 Answers

vote up 4 vote down check

Is there a reason you want to use a Label as opposed to a TextBlock?

link|flag
vote up 3 vote down

You could override the RecognizesAccessKey property of the ContentPresenter that is in the default template for the label. For example:

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Grid>
    <Grid.Resources>
      <Style x:Key="{x:Type Label}" TargetType="Label">
        <Setter Property="Template">
          <Setter.Value>
            <ControlTemplate TargetType="Label">
              <Border>
                <ContentPresenter
                  HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                  VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
                  RecognizesAccessKey="False" />
              </Border>
            </ControlTemplate>
          </Setter.Value>
        </Setter>
      </Style>
    </Grid.Resources>
    <Label>_This is a test</Label>
  </Grid>
</Page>
link|flag
Just tried this, doesn't work, actually. Perhaps it does remove access-key binding, but it doesn't prevent the underscore from being removed. – xanadont May 14 at 4:23
Just copied the code into Kaxaml and worked. Did you try as is or change it at all? – dp May 14 at 21:18
Works on my machine, too. – Simpzon Oct 6 at 11:23
vote up 0 vote down

@Daniel

I inherited some code and previous developer picked Label (probably since it sounds like a good replacement for the WinForms' Label control). TextBlock should work beautifully.

link|flag
vote up 0 vote down

Although Label is heavier, it does support nice alignment features which TextBlock does not. For instance, TextBlock does not have an analog to VerticalContentAlignment.

link|flag

Your Answer

Get an OpenID
or

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