TextElement.Background プロパティ

定義

コンテンツ エリアの背景の塗りつぶしに使用するブラシを取得または設定します。

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

プロパティ値

Brush

コンテンツ エリアの背景の塗りつぶしに使用するブラシ。背景ブラシを使用しない場合は null。 既定値は、null です。

次の例では、Paragraph を例の要素として使用して、Background 属性を設定する方法が示されています。

<FlowDocumentReader>
  <FlowDocument>
    <Paragraph
      Background="Bisque"
      Foreground="DarkGreen"
      Padding="4"
    >
      <Run>
        This text has a foreground color of dark green, and a background color of bisque.
      </Run>
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

次の図は、前の例がどのようにレンダリングされるかを示しています。

スクリーンショット: 緑の前景、背景ビスク

次の例では、Background プロパティをプログラムで設定する方法を示しています。

Run run = new Run(
    "This text has a foreground color of dark green, and a background color of bisque.");
Paragraph par = new Paragraph(run);

par.Background = Brushes.Bisque;
par.Foreground = Brushes.DarkGreen;
Dim run As New Run("This text has a foreground color of dark green, and a background color of bisque.")
Dim par As New Paragraph(run)

par.Background = Brushes.Bisque
par.Foreground = Brushes.DarkGreen

注釈

使用可能な定義済みのブラシの色を示す見本の表については、次を参照してください Brushes

依存プロパティ情報

識別子フィールド BackgroundProperty
に設定されたメタデータ プロパティ true AffectsRender

適用対象

こちらもご覧ください