禁用WPF标签加速键(缺少文本下划线)

问题描述 投票:0回答:5

我将 Label 的

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

在不更改底层字符串的情况下(通过将所有

_
替换为
__
),有没有办法禁用标签的加速器?

wpf user-interface
5个回答
95
投票

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


36
投票

您可以覆盖标签默认模板中 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>

1
投票

使用

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


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;
            }
        }
    }

0
投票

请检查我在

Stackoverflow
 上提供的 
LabelButton

控件的解决方案
© www.soinside.com 2019 - 2024. All rights reserved.