TextBox.TextDecorations 属性

定义

获取要应用到文本框的文本修饰。

public:
 property System::Windows::TextDecorationCollection ^ TextDecorations { System::Windows::TextDecorationCollection ^ get(); void set(System::Windows::TextDecorationCollection ^ value); };
public System.Windows.TextDecorationCollection TextDecorations { get; set; }
member this.TextDecorations : System.Windows.TextDecorationCollection with get, set
Public Property TextDecorations As TextDecorationCollection

属性值

一个 TextDecorationCollection 集合,它包含应用于文本框的文本修饰。 默认值为 null(不应用任何文本修饰)。

示例

以下示例将 Run 作为示例元素,演示如何设置 TextDecorations 属性。

<FlowDocument ColumnWidth="200">
  <Paragraph>
    <Run TextDecorations="Strikethrough">
      This text will render with the strikethrough effect.
    </Run>
  </Paragraph>
</FlowDocument>

下图显示了此示例的呈现效果。

屏幕截图:具有默认删除线效果

下图分别显示了 、 BaselineUnderline 修饰的呈现方式OverLine

屏幕截图:Overline TextDecorator

屏幕截图:文本的默认基线效果

屏幕截图:具有默认下划线效果

下面的示例演示如何以编程方式设置 TextDecorations 属性。

Run run1 = new Run("This text will render with the strikethrough effect.");
run1.TextDecorations = TextDecorations.Strikethrough;
Dim run1 As New Run("This text will render with the strikethrough effect.")
run1.TextDecorations = TextDecorations.Strikethrough

注解

TextDecoration 对象是可以添加到文本中的视觉装饰。 有四种类型的文本修饰:下划线、基线、删除线和上划线。 有关文本修饰的详细信息,请参阅 如何:创建文本修饰

依赖项属性信息

标识符字段 TextDecorationsProperty
元数据属性设置为 true AffectsRender

适用于