将列表框绑定到所选项目

时间:2013-05-30 23:06:23

标签: c# binding listbox

WP8,VS2012 ......我正在使用msdn本地数据库样本作为基础。

这是我当前设置的75%......

我有MainPage pivot> listbox AllItems,显示数据库中的所有当前项:

XAML

    <ListBox
        SelectionChanged="OpenWinePage_Click"
        x:Name="allItemsListBox" 
        ItemsSource="{Binding AllItems}" 
        Margin="12,2,-20,-2" Width="440"
        ItemTemplate="{StaticResource WineListBoxItemTemplate}" />

enter image description here

我希望能够点击其中一个项目,即Mark Ryan,并且只在“详细信息”页面中显示该项目:

代码OpenWinePage_Click的背后是:

    private void OpenWinePage_Click(object sender, EventArgs e)
     {
        // Capture selected item data
        _selectedItem = (sender as ListBox).SelectedItem;

        if (_selectedItem != null)
        {
            // Send ID of selected contact
            string dest = "/WinePage.xaml?toDoItemId=" + ((ToDoItem)_selectedItem).ToDoItemId;
            NavigationService.Navigate(new Uri(dest, UriKind.Relative));
        }
      }

当WinePage.xaml打开时,显示所选项目的xaml为:

          <ListBox
                    x:Name="WinePageDetails" 
                    Margin="12, 0, 12, 0" Width="440"
                    ItemsSource="{Binding AllItems}" <!--I DON'T KNOW WHAT TO BIND HERE TO ONLY SHOW SELECTED ITEM-->
                    ItemTemplate="{StaticResource WinePageListBoxItemTemplate}" />

所以我得到了详细信息页面中的所有项目,而不仅仅是1个所选项目:

enter image description here

在我的ToDoViewModel.cs中,我有以下我想要绑定的内容?...

    // All items.
    private ObservableCollection<ToDoItem> _allItems;
    public ObservableCollection<ToDoItem> AllItems
    {
        get { return _allItems; }
        set
        {
            _allItems = value;
            NotifyPropertyChanged("AllItems");
        }
    }

    // To-do items associated with the red category.
    private ObservableCollection<ToDoItem> _redItems;
    public ObservableCollection<ToDoItem> RedItems
    {
        get { return _redItems; }
        set
        {
            _redItems = value;
            NotifyPropertyChanged("RedItems");
        }
    }...et al pivots

我是否需要创建另一个只能指向一个项目的可观察集合,以便我可以绑定它?

这是一个具有约束力的问题吗?一个数据库问题?如何只在我的详细信息页面上显示一个选定的项目?

非常感谢您的帮助!

[R

1 个答案:

答案 0 :(得分:1)

您需要创建一个NotifyPropertyChanged属性,例如调用Public TodoItem SelectedTodo {...}时设置的OpenWinePage_Click。然后,您可以将该特定属性绑定到控件:例如<TextBlock Text="{Binding SelectedTodo}"/>