FixedPage.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
Значение свойства
Кисть для отрисовки фона страницы.
Примеры
В следующем примере показано использование Background свойства.
// ----------------------- 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()
' ----------------------- CreateFirstFixedPage -----------------------
''' <summary>
''' Creates the FixedPage for the first page.</summary>
''' <returns>
''' The FixedPage for the first page.</returns>
Private Function CreateFirstFixedPage() As FixedPage
Dim fixedPage As New FixedPage()
fixedPage.Background = Brushes.LightYellow
Dim visual As UIElement = CreateFirstVisual(False)
FixedPage.SetLeft(visual, 0)
FixedPage.SetTop(visual, 0)
Dim pageWidth As Double = 96 * 8.5
Dim pageHeight As Double = 96 * 11
fixedPage.Width = pageWidth
fixedPage.Height = pageHeight
fixedPage.Children.Add(CType(visual, UIElement))
Dim sz As New Size(8.5 * 96, 11 * 96)
fixedPage.Measure(sz)
fixedPage.Arrange(New Rect(New Point(), sz))
fixedPage.UpdateLayout()
Return fixedPage
End Function ' end:CreateFirstFixedPage()
Комментарии
Сведения о свойстве зависимостей
Поле идентификатора | BackgroundProperty |
Для свойств метаданных задано значение true |
AffectsRender, SubPropertiesDoNotAffectRender |