Style.Setters 属性

定义

获取 SetterEventSetter 对象的集合。

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

属性值

SetterBaseCollection

SetterEventSetter 对象的集合。 默认值为空集合。

示例

以下示例演示如何使用此属性。

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)

SetterBase 对象添加子级 Style 会隐式将其添加到 SetterBaseCollectionStyle 对象的子级。 下面 EventSetter 隐式添加到 SetterBaseCollection 样式中:

<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>

注解

对象的 Setters 属性 Style 只能包含可 SetterBase分配给的对象。 向 SetterBase 对象添加子级 Style 会隐式将其添加到 SetterBaseCollectionStyle 对象的子级。

显式属性元素用法 Setters 也相对常见。 这是一个标记样式决策,有时有助于区分SettersResources复杂Triggers样式中的项。 例如:

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

XAML 属性元素用法

<object>  
  oneOrMoreSetters  
</object>  

XAML 值

oneOrMoreSetters
一个或多个 Setter 对象 EventSetter

适用于

另请参阅