FixedPage.Background Propiedad

Definición

Obtiene o establece el Brush que se utiliza para representar el fondo de página.

C#
public System.Windows.Media.Brush Background { get; set; }

Valor de propiedad

Brush

Pincel que se usa para representar el fondo de página.

Ejemplos

En el ejemplo siguiente se muestra el uso de la Background propiedad .

C#
// ----------------------- CreateFirstFixedPage -----------------------
/// <summary>
///   Creates the FixedPage for the first page.</summary>
/// <returns>
///   The FixedPage for the first page.</returns>
private FixedPage CreateFirstFixedPage()
{
    FixedPage fixedPage = new FixedPage();
    fixedPage.Background = Brushes.LightYellow;
    UIElement visual = CreateFirstVisual(false);

    FixedPage.SetLeft(visual, 0);
    FixedPage.SetTop(visual, 0);

    double pageWidth = 96 * 8.5;
    double pageHeight = 96 * 11;

    fixedPage.Width = pageWidth;
    fixedPage.Height = pageHeight;

    fixedPage.Children.Add((UIElement)visual);

    Size sz = new Size(8.5 * 96, 11 * 96);
    fixedPage.Measure(sz);
    fixedPage.Arrange(new Rect(new Point(), sz));
    fixedPage.UpdateLayout();

    return fixedPage;
}// end:CreateFirstFixedPage()

Comentarios

Información sobre propiedades de dependencia

Campo identificador BackgroundProperty
Propiedades de metadatos establecidas en true AffectsRender, SubPropertiesDoNotAffectRender

Se aplica a

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

Consulte también