字典中对象属性的数据绑定

时间:2015-04-24 09:03:14

标签: c# wpf xaml data-binding

我对XAML中的数据绑定有疑问。我有字典,其中是我的对象。现在在视图中我希望在字典的第一个列表框键中显示(这没有问题),但在嵌套列表框中显示该对象的值。

所以 - 我在XAML中的代码:

<ListBox ItemsSource="{Binding Dict}" Margin="0,0,171,0">
    <ListBox.ItemTemplate>
        <DataTemplate>
             <StackPanel>
                 <TextBlock Text="{Binding Path=Key}" />
                 <ListBox ItemsSource="{Binding Path=Value}">
                     <ListBox.ItemTemplate>
                         <DataTemplate>
                            <StackPanel>
                                <TextBlock Text="{Binding Path=Key}" />
                                <TextBlock Text="{Binding Path=Value}" /> <!-- HERE -->
                            </StackPanel>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

使用ViewModel中的代码:

public MainWindow()
{
    InitializeComponent();
    t = new TestModel();
    t._dict = new Dictionary<string, Dictionary<string, myDrive>>();

    t._dict.Add("folder1", new Dictionary<string, myDrive>());
    t._dict["folder1"].Add("file1", new myDrive() { size = "71" });
    t._dict.Add("folder2", new Dictionary<string, test>());
    t._dict["folder2"].Add("file1", new myDrive() { size = "54" });
    t._dict["folder2"].Add("file2", new myDrive() { size = "30" });

    this.DataContext = t;
}

和模型中的代码:

public Dictionary<string, Dictionary<string, myDrive>> _dict;

public Dictionary<string, Dictionary<string, myDrive>> Dict
{
    get
    {
        return this._dict;
    }
}

和myDrive类很简单:

public class myDrive
{
    public string size = "";

    public string getSize()
    {
        return this.size;
    }
}

我的目标是在该文本框中显示参数大小,所以我尝试了不同的方式:

<TextBlock Text="{Binding Path=Value.size}" />
<TextBlock Text="{Binding Path=Value[size]}" />
<TextBlock Text="{Binding Path=Value.getSize}" />

但没有运气:(。只有我把Value放在例子中,才能看到输出字符串:“AppName.myDrive”。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

首先定义size变量的属性。您只能使用Databind属性而不是变量。

public class myDrive
{
    public string size = "";

    public string Size{get{return size;}}
    public string getSize()
    {
        return this.size;
    }
}

完成后,您可以绑定如下

<ListBox ItemsSource="{Binding Dict}" Margin="0,0,171,0">
    <ListBox.ItemTemplate>
        <DataTemplate>
             <StackPanel>
                 <TextBlock Text="{Binding Path=Key}" />
                 <ListBox ItemsSource="{Binding Path=Value}">
                     <ListBox.ItemTemplate>
                         <DataTemplate>
                            <StackPanel>
                                 <TextBlock Text="{Binding Path=Key}" />
                                 <TextBlock Text="{Binding Path=Value.Size}" />
                            </StackPanel>
                        </DataTemplate>
                    </ListBox.ItemTemplate>
                </ListBox>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>