当一个新项目被添加到SQLite数据库时,更新列表视图
本文关键字:数据库 SQLite 更新 视图 列表 添加 一个 新项目 | 更新日期: 2023-09-27 17:58:01
将数据存储在SQLite数据库中,数据显示在列表视图中,当我向数据库添加新条目时,如何使ListView自动更新,目前必须关闭应用程序并重新打开它以更新信息。
public MainPage()
{
this.InitializeComponent();
TestListViewBinding();
}
private void TestListViewBinding()
{
var db = new SQLiteConnection(new SQLitePlatformWinRT(), App.path);
var Ingredients = new List<Ingredient>();
{
Ingredients = db.Table<Ingredient>().ToList();
}
TestView.ItemsSource = Ingredients;
}
Xaml
<ListView x:Name="TestView" Grid.Row="2" Margin="8,0" ItemsSource="{Binding , Mode=TwoWay}">
<ListView.ItemTemplate>
<DataTemplate>
<Grid Width="auto" HorizontalAlignment="Stretch" >
<TextBlock Grid.Column="0" Text="{Binding IngredientName, Mode=TwoWay}"/>
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
您可以使用ObservableCollection将列表Ingredients
替换为ListView
的ItemsSource
。
ObservableCollection
在添加、删除项目或刷新整个列表时提供通知,例如:
public ObservableCollection<Ingredient> IngredientsCollection = new ObservableCollection<Ingredient>();
private void TestListViewBinding()
{
var db = new SQLiteConnection(new SQLitePlatformWinRT(), App.path);
var Ingredients = new List<Ingredient>();
{
Ingredients = db.Table<Ingredient>().ToList();
}
foreach (var Ingredient in Ingredients)
{
IngredientsCollection.Add(Ingredient); //This is important
}
TestView.ItemsSource = IngredientsCollection;
//TestView.ItemsSource = Ingredients;
}
然后,当您将数据添加到数据库时,不要忘记将数据添加到此"IngredientsCollection",当数据添加到此集合后,ListView
项将自动添加。