TextBlock.Text 属性

定义

获取或设置 TextBlock 的文本内容。

public:
 property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
[System.Windows.Localizability(System.Windows.LocalizationCategory.Text)]
public string Text { get; set; }
[<System.Windows.Localizability(System.Windows.LocalizationCategory.Text)>]
member this.Text : string with get, set
Public Property Text As String

属性值

TextBlock 的文本内容。 注意,所有非文本内容将被剥除,从而获得 TextBlock 内容的纯文本表示。 默认值为 Empty

属性

示例

以下示例演示如何设置 Text 元素的 TextBlock 属性。

<TextBlock Text="The text contents of this TextBlock element."/>

或者,文本运行的内容可能只包含在元素标记中 TextBlock

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

TextBlock textBlock = new TextBlock();
textBlock.Text = "The text contents of this TextBlock.";
Dim textBlock As New TextBlock()
textBlock.Text = "The text contents of this TextBlock."

注解

如果要在 中 TextBlock显示纯文本,请使用此属性。 如果需要设置文本格式,请将 对象添加到 InlineInlines 属性。

依赖项属性信息

标识符字段 TextProperty
元数据属性设置为 true AffectsMeasure, AffectsRender

适用于