如何为Ribbonbutton标签的字符加下划线?

时间:2015-08-07 11:45:30

标签: c# .net wpf

有没有办法让带状按钮的label属性的字符在c#中加下划线(下划线),以便在不使用key tip属性的情况下显示访问键。

例如:如果是保存按钮,则带状按钮标签必须类似于使用下划线保存或在S下方加下划线。

1 个答案:

答案 0 :(得分:1)

您可以在Underline中使用TextBlock

<TextBlock Name="textBlockSave">
  <Underline>S</Underline>ave
</TextBlock>

,或者

textBlockSave.Inlines.Add(new Underline(new Run("S")));
textBlockSave.Inlines.Add(new Run("ave"));

将此文本块textBlockSave添加为Button内容。