ContentPresenter.Background Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il pennello da applicare allo sfondo del contenuto gestito da ContentPresenter.
public:
property Brush ^ Background { Brush ^ get(); void set(Brush ^ value); };
Brush Background();
void Background(Brush value);
public Brush Background { get; set; }
var brush = contentPresenter.background;
contentPresenter.background = brush;
Public Property Background As Brush
<ContentPresenter Background="{StaticResource resourceName}"/>
- or -
<ContentPresenter Background="colorString"/>
- or -
<ContentPresenter>
<ContentPresenter.Background>singleBrush</ContentPresenter.Background>
</ContentPresenter>
Valore della proprietà
Pennello utilizzato come pennello di sfondo per il contenuto. Il valore predefinito è un pennello Null dal punto di vista del codice puro, ma per impostazione predefinita lo stile di sistema viene impostato su Bianco (per tema chiaro ) o Nero (per tema scuro ).