如何在编辑项后刷新列表视图控件
本文关键字:刷新 列表 视图 控件 编辑 | 更新日期: 2023-09-27 18:08:25
我开始使用wpf listview控件。我创建了一个"添加"按钮和一个"编辑"按钮。"添加"按钮按预期工作-每当我向列表中添加新项目时,它就会显示出来。我的问题是与"编辑"按钮-什么是通知listView控件的正确方式,一个项目被更改?(它在附件的代码中工作,我只是想知道是否有更好的方法)
这是我的代码:
Xaml:<Window x:Class="WpfApplication5.MainWindow" Name="This"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
>
<Grid>
<ListView Name="Mylist"
ItemsSource= "{Binding ElementName=This, Path=People}"
SelectionMode="Single"
>
<ListView.View>
<GridView AllowsColumnReorder="false">
<GridViewColumn
Header="Name"
Width="Auto"
DisplayMemberBinding="{Binding Path=Name}" />
<GridViewColumn
Header="Id"
Width="Auto"
DisplayMemberBinding="{Binding Path=Id}" />
</GridView>
</ListView.View>
</ListView>
<StackPanel Orientation="Horizontal" Height="45" Margin="190,133,197,133">
<Button
Content="Add"
Click="AddButton_Click"
/>
<Button
Content="Edit"
Click="EditButton_Click"
/>
</StackPanel>
</Grid>
</Window>
背后的代码:
namespace WpfApplication5
{
public class PersonalDetails
{
public string Name {get; set;}
public string Id {get; set;}
}
public partial class MainWindow : Window
{
private ObservableCollection<PersonalDetails> people = new ObservableCollection<PersonalDetails>();
public ObservableCollection<PersonalDetails> People
{
get { return this.people; }
}
public MainWindow()
{
PersonalDetails p1 = new PersonalDetails();
p1.Name = "Jeff";
p1.Id = "111";
people.Add(p1);
InitializeComponent();
}
private void AddButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
PersonalDetails p2 = new PersonalDetails();
p2.Name = "Tom";
p2.Id = "222";
people.Add(p2);
}
private void EditButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
PersonalDetails pItem = (PersonalDetails)Mylist.SelectedItem;
if (pItem == null)
{
return;
}
pItem.Name = "Dan";
Mylist.Items.Refresh();
}
}
}
你的PersonalDetails类应该实现INotifyPropertyChanged接口。
然后,当Name
属性发生变化并引发PropertyChanged
事件时,WPF绑定基础结构将通过刷新表示来响应。
XAML:
<ListView Name="listResult" ItemsSource="{Binding ItemsCollection}"></ListView>
背后的代码:
private ObservableCollection<object> itemsCollection = new ObservableCollection<object>();
public ObservableCollection<object> ItemsCollection
{
get { return this.itemsCollection; }
}
private void UpdateSectionsList()
{
List<object> tempList = ... //Put your element here
// clear the list before and reload the object you want to display
itemsCollection.Clear();
if (tempList.Count > 0)
{
foreach (object item in tempList)
{
itemsCollection.Add(item);
}
}
}