Style.Setters プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Setter オブジェクトと 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
プロパティ値
Setter オブジェクトと EventSetter オブジェクトのコレクション。 既定値は空のコレクションです。
例
次の例は、このプロパティの使用方法を示しています。
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追加されます。 スタイルの に暗黙的に追加されるのはSetterBaseCollection、次EventSetterのとおりです。
<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 使用も比較的一般的です。 これは、複雑なスタイルの 項目と Triggers を区別SettersResourcesするのに役立つマークアップ スタイルの決定です。 次に例を示します。
<Style>
<Style.Setters>
<!--one or more SetterBase derived object elements here-->
</Style.Setters>
</Style>
XAML プロパティ要素の使用
<object>
oneOrMoreSetters
</object>
XAML 値
oneOrMoreSetters 1 つまたは複数の SetterEventSetter オブジェクト。
適用対象
こちらもご覧ください
.NET