63

我将.ContentLabel 的值设置为包含下划线的字符串;第一个下划线被解释为加速键。

在不更改底层字符串(通过全部替换___)的情况下,有没有办法禁用标签的加速器?

4

4 回答 4

89

如果您使用 TextBlock 作为 Label 的内容,则其 Text 不会吸收下划线。

于 2010-07-09T08:24:02.263 回答
33

您可以覆盖标签默认模板中的 ContentPresenter 的 RecognizesAccessKey 属性。例如:

<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}" BasedOn="{StaticResource {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>
于 2008-09-02T22:06:09.767 回答
1

使用 a<TextBlock> ... </TextBlock> 而不是<Label> ... </Label>打印带有下划线的确切文本。

于 2017-04-19T13:34:45.677 回答
0

为什么不这样?

public partial class LabelEx : Label
    {
        public bool PreventAccessKey { get; set; } = true;

        public LabelEx()
        {
            InitializeComponent();
        }

        public new object Content
        {
            get
            {
                var content = base.Content;
                if (content == null || !(content is string))
                    return content;

                return PreventAccessKey ?
                    (content as string).Replace("__", "_") : content;
            }
            set
            {
                if (value == null || !(value is string))
                {
                    base.Content = value;
                    return;
                }

                base.Content = PreventAccessKey ?
                    (value as string).Replace("_", "__") : value;
            }
        }
    }
于 2017-05-22T15:22:24.563 回答