TextBlock.Text プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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使用します。 テキストの書式を設定する必要がある場合は、 プロパティにオブジェクトをInlines追加Inlineします。
依存プロパティ情報
識別子フィールド | TextProperty |
に設定されたメタデータ プロパティ true |
AffectsMeasure, AffectsRender |
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET