FlowDocument.Foreground Свойство

Определение

Возвращает или задает кисть Brush, которую следует применить к текстовому содержимому FlowDocument.

public:
 property System::Windows::Media::Brush ^ Foreground { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush Foreground { get; set; }
member this.Foreground : System.Windows.Media.Brush with get, set
Public Property Foreground As Brush

Значение свойства

Кисть, применяемая к текстовому содержимому. Значение по умолчанию — Black.

Примеры

В следующем примере показано, как задать Foreground атрибут 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>

В следующем примере показано, как программным образом присвоить значение свойству Foreground.

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.

Все Foreground параметры дочерних элементов переопределяют этот параметр верхнего уровня.

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

Поле идентификатора ForegroundProperty
Для свойств метаданных задано значение true AffectsRender, Inherits,

SubPropertiesDoNotAffectRender

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