0

我的 windows phone 8.1 应用程序 mainpage.xaml 中有 toolkit:listpicker

<toolkit:ListPicker x:Name="ListPicker"
                    HorizontalAlignment="Left"
                    Margin="40,10,0,0"
                    VerticalAlignment="Top"
                    Grid.Row="1">
    <toolkit:ListPicker.ItemTemplate>
        <DataTemplate>
            <toolkit:ListPickerItem Content="{Binding ListName}" />
        </DataTemplate>
    </toolkit:ListPicker.ItemTemplate>
 </toolkit:ListPicker>

以及在本地数据库中添加项目的另一个页面。当我添加项目时,列表选择器不会刷新,直到我关闭应用程序并再次重新打开它。

有人可以帮我弄这个吗?

4

1 回答 1

1

在您的数据源上实现 Inotifypropertychanged 模式。这样,UI 将响应您在数据源中所做的任何更改。

http://danrigby.com/2012/03/01/inotifypropertychanged-the-net-4-5-way

于 2014-09-27T17:05:42.183 回答