AlternationConverter.Values プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
整数が AlternationConverter メソッドに渡されたときに Convert(Object, Type, Object, CultureInfo) が返すオブジェクトのリストを取得します。
public:
property System::Collections::IList ^ Values { System::Collections::IList ^ get(); };
public System.Collections.IList Values { get; }
member this.Values : System.Collections.IList
Public ReadOnly Property Values As IList
プロパティ値
整数が AlternationConverter メソッドに渡されたときに Convert(Object, Type, Object, CultureInfo) が返すオブジェクトのリスト。
例
次の例では、 をListBox作成し、2 つのAlternationConverterオブジェクトを使用して 項目の と FontStyle をBackground交互に使用します。
<Grid>
<Grid.Resources>
<AlternationConverter x:Key="BackgroundConverter">
<SolidColorBrush>Blue</SolidColorBrush>
<SolidColorBrush>LightBlue</SolidColorBrush>
</AlternationConverter>
<AlternationConverter x:Key="FontStyleConverter">
<FontStyle >Italic</FontStyle>
<FontStyle >Normal</FontStyle>
</AlternationConverter>
<Style x:Key="alternatingWithBinding" TargetType="{x:Type ListBoxItem}">
<Setter Property="Background"
Value="{Binding RelativeSource={RelativeSource Self},
Path=(ItemsControl.AlternationIndex),
Converter={StaticResource BackgroundConverter}}"/>
<Setter Property="FontStyle"
Value="{Binding RelativeSource={RelativeSource Self},
Path=(ItemsControl.AlternationIndex),
Converter={StaticResource FontStyleConverter}}"/>
</Style>
</Grid.Resources>
<ListBox AlternationCount="2" ItemsSource="{StaticResource data}"
ItemContainerStyle="{StaticResource alternatingWithBinding}"/>
</Grid>
注釈
を AlternationConverter 使用してプロパティを交互の値にバインドする場合、 Values プロパティには プロパティに割り当てられているオブジェクトが含まれます。 たとえば、 の項目に ListBox 青と水色の背景を交互に設定する場合は、 に青 SolidColorBrush と水色 SolidColorBrush を追加します Values。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET