FlowDocument.Background プロパティ

定義

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

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 です。

次の例は、要素の属性を設定する Background 方法を FlowDocument 示しています。

<FlowDocumentReader>
  <FlowDocument 
    Background="IndianRed"
    Foreground="NavajoWhite"
  >
    <Paragraph>
      This FlowDocument will have a background color of Indian red, with the text
      colored Navajo white.  Any Forground or Background settings on this paragraph
      would override the top-level settings for the FlowDocument.
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

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

FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content...")));
flowDoc.Background = Brushes.IndianRed;
flowDoc.Foreground = Brushes.NavajoWhite;
Dim flowDoc As New FlowDocument(New Paragraph(New Run("A bit of text content...")))
flowDoc.Background = Brushes.IndianRed
flowDoc.Foreground = Brushes.NavajoWhite

注釈

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

依存プロパティ情報

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

適用対象