Style.Setters Proprietà

Definizione

Ottiene un insieme di oggetti Setter e EventSetter.

public:
 property System::Windows::SetterBaseCollection ^ Setters { System::Windows::SetterBaseCollection ^ get(); };
public System.Windows.SetterBaseCollection Setters { get; }
member this.Setters : System.Windows.SetterBaseCollection
Public ReadOnly Property Setters As SetterBaseCollection

Valore della proprietà

SetterBaseCollection

Un insieme di oggetti Setter e EventSetter. Il valore predefinito è una raccolta vuota.

Esempio

Nell'esempio seguente viene illustrato come usare questa proprietà.

Style style = new Style(typeof(ListBoxItem));
style.Setters.Add(new Setter(ListBoxItem.HorizontalContentAlignmentProperty,
     HorizontalAlignment.Stretch));
ListBox lb = new ListBox();
lb.ItemContainerStyle = style;
ListBoxItem lbi1 = new ListBoxItem();
Button btn = new Button();
btn.Content = "Button as styled list box item.";
lbi1.Content = (btn);
lb.Items.Add(lbi1);
Dim style As Style = New Style()
style.Setters.Add(New Setter(ListBoxItem.HorizontalContentAlignmentProperty, _
     HorizontalAlignment.Stretch))
Dim lb As ListBox = New ListBox()
lb.ItemContainerStyle = style
Dim lbi1 As ListBoxItem = New ListBoxItem()
Dim btn As Button = New Button()
btn.Content = "Button as styled list box item."
lbi1.Content = (btn)
lb.Items.Add(lbi1)

L'aggiunta di un elemento figlio a un SetterBase oggetto aggiunge in modo implicito all'oggetto SetterBaseCollection Style .Style Di seguito EventSetter viene aggiunto in modo implicito allo SetterBaseCollection stile:

<StackPanel
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="SDKSample.EventOvw2"
  Name="dpanel2"
  Initialized="PrimeHandledToo"
>
  <StackPanel.Resources>
    <Style TargetType="{x:Type Button}">
      <EventSetter Event="Click" Handler="b1SetColor"/>
    </Style>
  </StackPanel.Resources>
  <Button>Click me</Button>
  <Button Name="ThisButton" Click="HandleThis">
    Raise event, handle it, use handled=true handler to get it anyway.
  </Button>
</StackPanel>

Commenti

La Setters proprietà di un Style oggetto può essere costituita solo da oggetti assegnabili a SetterBase. L'aggiunta di un elemento figlio a un SetterBase oggetto aggiunge in modo implicito all'oggetto SetterBaseCollection Style .Style

L'utilizzo di un elemento di proprietà esplicito per Setters è anche relativamente comune. Si tratta di una decisione di stile di markup che a volte può aiutare a distinguere Setters gli Resources elementi e Triggers in uno stile complesso. Ad esempio:

<Style>  
  <Style.Setters>  
    <!--one or more SetterBase derived object elements here-->  
  </Style.Setters>  
</Style>  

Utilizzo della sintassi XAML per elementi proprietà

<object>  
  oneOrMoreSetters  
</object>  

Valori XAML

oneOrMoreSetters
Uno o EventSetter più Setter oggetti.

Si applica a

Vedi anche