使用一种样式,将多个对象绑定到列表

时间:2013-06-25 20:45:03

标签: c# wpf xaml data-binding

我有N个DataPoints和一个N长度的字符串列表。我想创建一个样式资源,我可以将其应用于每个DataBlock,它将每个TextBlock绑定到列表中的元素。像这样的东西

<Style TargetType="charting:DataPoint" x:Key="annotatedChart">
        <Setter Property="Background" Value="CornflowerBlue"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="charting:DataPoint">
                    <Grid>
                        <Rectangle
                            Fill="{TemplateBinding Background}"
                            Stroke="Black"/>
                        <Grid
                            Background="#aaffffff"
                            Margin="0 -20 0 0"
                            HorizontalAlignment="Center"
                            VerticalAlignment="Top">
                            <TextBlock
                                x:Name="textBox"
                                Text="{Binding}"   <!--TODO -->
                                FontWeight="Bold"
                                Margin="2"/>
                        </Grid>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

我需要将该文本绑定到列表,以便具有此样式的每个数据点都将显示列表中的匹配文本元素。我已经尝试将我的主窗口的DataContext设置为几个对象和属性,但都无济于事。有一段时间,我的DataPoints显示了Dependent和Independent值,但从我的字符串列表中没有显示任何内容。

1 个答案:

答案 0 :(得分:0)

好吧我明白了。我创建了一个独立值和标签的字典,将其设置为我的窗口的DataContext,并使用IValueConverter将文本框绑定到它,该IValueConverter在字典中查找依赖值并将其映射到标签。

<TextBlock
            x:Name="textBox"
            Text="{Binding Key, Converter={StaticResource annotationsConverter}}"
            FontWeight="Bold"
            Margin="2"
            TextWrapping="Wrap"/>

public class myAnnotationsConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (MainWindow.annotations != null)
        {
            try
            {
                return MainWindow.annotations[value as string];
            }
            catch (KeyNotFoundException e)
            {
                return "NULL";
            }

        }
        throw new NotFiniteNumberException();
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotFiniteNumberException();
    }
}

可能的改进:在类别轴中支持每个类别多个列。所以,如果我在2007年6月有三个酒吧,为所有人保留一个独特的标签。