AlternationConverter.Values 属性

定义

获取在将整数传递给 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

属性值

IList

将整数传递给 AlternationConverter 方法时,Convert(Object, Type, Object, CultureInfo) 返回的对象的列表。

示例

以下示例创建一个并使用两AlternationConverterListBox对象替换Background项和FontStyle项。

<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和浅蓝色SolidColorBrushValues

适用于