关于用户界面:禁用WPF标签加速键(缺少文本下划线)

关于用户界面:禁用WPF标签加速键(缺少文本下划线)

Disable WPF label accelerator key (text underscore is missing)

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

在不更改基础字符串的情况下(通过将所有_替换为__),是否可以禁用标签加速器?


如果将TextBlock用作标签的内容,则其Text不会吸收下划线。


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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>

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


为什么不喜欢这个?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
            }
        }
    }

推荐阅读