Condition.Binding プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
条件のプロパティを指定するバインドを取得または設定します。 これは MultiDataTrigger オブジェクトにのみ適用されます。
public:
property System::Windows::Data::BindingBase ^ Binding { System::Windows::Data::BindingBase ^ get(); void set(System::Windows::Data::BindingBase ^ value); };
public System.Windows.Data.BindingBase Binding { get; set; }
member this.Binding : System.Windows.Data.BindingBase with get, set
Public Property Binding As BindingBase
プロパティ値
既定値は、null です。
例
次の例では、ItemsSourceこれらのListBoxオブジェクトは Place オブジェクトの PlacesObservableCollection<T> にバインドされています。 Place オブジェクトにはプロパティ Name と State があります。
各 ListBoxItem オブジェクトに ListBox Place オブジェクトが表示されます。 この Style 例では、各 ListBoxItem. の s MultiDataTrigger はCondition、Place データ項目の 名前 と 状態 がそれぞれ "ポートランド" と "OR" である場合、対応するListBoxItem背景がシアンに設定されるように指定されます。
<Window.Resources>
<c:Places x:Key="PlacesData"/>
<Style TargetType="ListBoxItem">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=State}" Value="WA">
<Setter Property="Foreground" Value="Red" />
</DataTrigger>
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Binding="{Binding Path=Name}" Value="Portland" />
<Condition Binding="{Binding Path=State}" Value="OR" />
</MultiDataTrigger.Conditions>
<Setter Property="Background" Value="Cyan" />
</MultiDataTrigger>
</Style.Triggers>
</Style>
<DataTemplate DataType="{x:Type c:Place}">
<Canvas Width="160" Height="20">
<TextBlock FontSize="12"
Width="130" Canvas.Left="0" Text="{Binding Path=Name}"/>
<TextBlock FontSize="12" Width="30"
Canvas.Left="130" Text="{Binding Path=State}"/>
</Canvas>
</DataTemplate>
</Window.Resources>
<StackPanel>
<TextBlock FontSize="18" Margin="5" FontWeight="Bold"
HorizontalAlignment="Center">Data Trigger Sample</TextBlock>
<ListBox Width="180" HorizontalAlignment="Center" Background="Honeydew"
ItemsSource="{Binding Source={StaticResource PlacesData}}"/>
</StackPanel>
注釈
MultiDataTriggerを使用すると、返されるデータの値に基づいてプロパティ値を設定できます。 たとえば、タスク アイテムの一覧を表示する場合、タスクが優先度が高く、2 週間以上表示されていない場合は、赤い背景でタスクを表示できます。
バインドを作成し、そのプロパティを Path 使用して、特定のオブジェクト (バインディング ソース オブジェクト) のプロパティにバインドします。 たとえば、Task の Priority プロパティにバインドできます。 詳しくは、「 データ バインディングの概要」をご覧ください。
条件の場合はMultiDataTrigger、プロパティとプロパティValueをBinding設定する必要があることに注意してください。 この値を Property 設定すると、その場合は例外が発生します。
XAML 属性の使用方法
<object property="{Binding declaration}"/>
XAML プロパティ要素の使用
<object>
<object.Binding>
<Binding …/>
</object.Binding>
</object>
XAML 値
declaration
バインド宣言。 詳細については、「 バインド宣言の概要 」を参照してください。