3

“a.text”是从我的 JSON 响应中提取的。我正在尝试在列表框中显示“a.text”。

List<Feature> features = App.dResult.directions[0].features;
        foreach (Feature f in features)
        {
            Attributes a = f.attributes;
            MessageBox.Show(a.text);
            directionListBox.ItemsSource = a.text;

        }

我尝试使用将“a.text”绑定到列表框,但没有显示。

<ListBox x:Name="directionListBox" ItemsSource="{Binding a.text}" >
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Vertical">
                        <TextBlock Text="{Binding a.text}" Style="{StaticResource PhoneTextTitle2Style}" />
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

谁能给我一些关于如何将“a.text”绑定到列表框的想法?

任何帮助将不胜感激。

4

1 回答 1

0

ListBox 的 ItemsSource 属性不应指向字符串,如 a.text,而是指向 ObservableCollection。

尝试这样的事情:

第一个:从 INotifyPropertyChanged 派生该代码类。

第二:您可以从此处获取 ObservableList或使用 ObservableCollection 代替。

第三:然后使用此代码(未经测试,但可能有效):

ObservableList<String> featList = new ObservableCollection<String>();
public event PropertyChangedEventHandler PropertyChanged;

public void InvokePropertyChanged(string propertyName)
{
    PropertyChangedEventHandler handler = PropertyChanged;
    if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
public ObservableList<String> FeatList
{
    get { return featList; }
    set
    {
        featList = value;
        InvokePropertyChanged("FeatList");
    }
}
List<Feature> features = App.dResult.directions[0].features;
foreach (Feature f in features)
{
    Attributes a = f.attributes;
    //MessageBox.Show(a.text);
    FeatList.add(a.text);
}

第四:在字段的顶部,您必须使用“使用”语句来导入 ObservableList。

然后,将列表框的 ItemSource 绑定到这个列表,并使 TextBlock 的 Binding 只绑定到默认的 DataContext,这将是列表中的字符串:

<ListBox x:Name="directionListBox" ItemsSource="{Binding FeatList}" >
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Vertical">
                    <TextBlock Text="{Binding}" Style="{StaticResource PhoneTextTitle2Style}" />
                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
于 2013-04-10T09:22:39.813 回答