0

我是 Windows Phone 7.1 开发的新手。我在 VB.NET 中工作。

我正在开发与“如何:为 Windows Phone 创建基本本地数据库应用程序”类似的应用程序。

我已经设法使用上面的示例编写了添加和删除代码。

但是更新代码......当我返回显示所有数据的页面时,它不会更新为新信息。信息已保存(已提交),因为当我在单独的页面中查看记录详细信息时,它们就在那里。

显示所有数据的 XAML 页面代码如下:

<ScrollViewer  Margin="12,148,12,90" Name="scrollViewerVendors">
        <ItemsControl ItemsSource="{Binding AllVendors}">
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Border BorderThickness="1" CornerRadius="12" Margin="2">
                        <Grid>
                            <Grid.RowDefinitions>
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                            </Grid.RowDefinitions>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="Auto" />
                                <ColumnDefinition Width="Auto" />
                            </Grid.ColumnDefinitions>
                            <StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center">
                                <TextBlock Text="{Binding Name}" FontSize="28" />
                            </StackPanel>
                            <StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" VerticalAlignment="Center">
                                <TextBlock Text="{Binding Address}" />
                            </StackPanel>
                            <Button Grid.Row="0" Grid.Column="1" Grid.RowSpan="2" 
                                x:Name="EditVendorButton" 
                                BorderThickness="1" 
                                Click="EditVendorButton_Click">
                                <Image Source="/Images/AppBar/appbar.edit.rest.png" />
                            </Button>
                            <Button 
                                Grid.Row="0" Grid.Column="2" Grid.RowSpan="2" 
                                x:Name="DeleteVendorButton" 
                                BorderThickness="1" 
                                Click="DeleteVendorButton_Click">
                                <Image Source="/Images/AppBar/appbar.delete.rest.png"  />
                            </Button>
                        </Grid>
                    </Border>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </ScrollViewer>

我在编辑页面中编写的更新代码:

Using DemoAppDB As New DemoAppContext.DemoAppContext("Data Source=isostore:/DemoApp.sdf")
            Dim CurrentVendor = From VendorDetails In DemoAppDB.Vendors Where VendorDetails.VendorID = CInt(sVendorID) Select VendorDetails

            For Each Vendor In CurrentVendor
                Vendor.Name = TextBox1.Text
                Vendor.Address = TextBox2.Text
                Vendor.ContactPerson = TextBox3.Text
                Vendor.Phone = TextBox4.Text
                Vendor.Email = TextBox5.Text
                Vendor.Notes = TextBox6.Text
            Next
            'Save changes to the database
            DemoAppDB.SubmitChanges()
        End Using

VendorID 在页面之间成功传递。我已经检查过了。

数据库更新,但我似乎无法更新 ScrollView 记录。我也尝试过使用 ListView 控件。结果相同。

模型类实现 INotifyPropertyChanged、INotifyPropertyChanging。viewmodel 类实现 INotifyPropertyChanged。

如果您需要任何其他详细信息,请询问我。谢谢您阅读此篇!

4

1 回答 1

0

看过教程后,我会说你错过了

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
// Define the query to gather all of the to-do items.
var toDoItemsInDB = from ToDoItem todo in toDoDB.ToDoItems
                    select todo;

// Execute the query and place the results into a collection.
ToDoItems = new ObservableCollection<ToDoItem>(toDoItemsInDB);

    // Call the base method.
    base.OnNavigatedTo(e);
}

对您而言,您将在哪里更新 AllVendors。

这里发生的是,在应用程序导航回主页后,它正在重新加载保存数据的 ObservableCollection。

于 2012-05-29T15:03:09.060 回答