FlowDocument.Background Propiedad

Definición

Obtiene o establece el objeto Brush que se utiliza para rellenar el fondo del área de contenido.

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

Valor de propiedad

Brush

Pincel que se usa para rellenar el fondo del área de contenido o null para no utilizar ningún pincel de fondo. De manera predeterminada, es null.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer el Background atributo de un FlowDocument elemento .

<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>

En el ejemplo siguiente se muestra cómo establecer la Background propiedad mediante programación.

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

Comentarios

Para ver una tabla de muestras que muestran los colores predefinidos del pincel disponibles, vea Brushes.

Información sobre propiedades de dependencia

Campo identificador BackgroundProperty
Propiedades de metadatos establecidas en true AffectsRender

Se aplica a