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.

Примеры

В следующем примере показано, как задать Background атрибут, используя Paragraph в качестве примера элемент.

<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

Комментарии

For a table of swatches that show the available predefined brush colors, see Brushes.

Сведения о свойстве зависимостей

Поле идентификатора BackgroundProperty
Metadata properties set to true AffectsRender

Применяется к

См. также раздел