您现在的位置是:亿华云 > IT科技
聊聊C# ObservableCollection和List
亿华云2025-10-09 01:30:19【IT科技】5人已围观
简介一、ObservableCollection和List的区别1)ObservableCollection比较简单,继承了Collection, INotifyCollectionChanged, IN
一、聊聊ObservableCollection和List的聊聊区别
1)ObservableCollection比较简单,继承了Collection,聊聊 INotifyCollectionChanged, INotifyPropertyChanged
Collection:为泛型集合提供基类。
INotifyCollectionChanged:将集合的聊聊动态更改通知给侦听器,例如,聊聊何时添加和移除项或者重置整个集合对象。聊聊
INotifyPropertyChanged:向客户端发出某一属性值已更改的聊聊通知。
所以再ObservableCollection这个类的聊聊方法,对数据的聊聊操作很少,重点放在了当自己本事变化的聊聊时候(不管是属性,还是聊聊集合)会调用发出通知的事件。(一般用于更新UI,聊聊当然也可以用于写其他的聊聊事情。这个以后会写)
2)List就比较多了,聊聊继承了IList,聊聊 ICollection, IEnumerable, IList, ICollection, IEnumerable。
IList:表示可按照索引单独访问的一组对象。
ICollection:定义操作泛型集合的免费信息发布网方法。
IEnumerable:公开枚举器,该枚举器支持在指定类型的集合上进行简单迭代。
IList:表示可按照索引单独访问的对象的非泛型集合。
ICollection:定义所有非泛型集合的大小、枚举器和同步方法。
IEnumerable:公开枚举器,该枚举器支持在非泛型集合上进行简单迭代。
二、举例:
1、举例1:
MainWindow.xaml:
<ListBox x:Name="listbind" Height="61" HorizontalAlignment="Left" Margin="146,12,0,0" VerticalAlignment="Top" Width="120" > <ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{ Binding Name}" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox> <ListBox x:Name="observbind" Height="74" HorizontalAlignment="Left" Margin="146,111,0,0" VerticalAlignment="Top" Width="120" > <ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{ Binding Name}" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox> <TextBlock Height="23" HorizontalAlignment="Left" Margin="38,58,0,0" Name="textBlock1" Text="List绑定数据" VerticalAlignment="Top" /> <TextBlock Height="44" HorizontalAlignment="Left" Margin="12,125,0,0" Name="textBlock2" Text="ObservableCollection绑定数据" VerticalAlignment="Top" Width="112" /> <Button Content="Button" Height="23" HorizontalAlignment="Left"xaml页面很简单,托2个listbox分别用来绑定ObservableCollection和List
Person.cs:
public class Person { public string Name { get; set; } }MainWindow.xaml.cs:
private List<Person> person1 = new List<Person>(); private ObservableCollection<Person> person2 = new ObservableCollection<Person>(); public DemoTestDiff() { InitializeComponent(); person1.Add(new Person() { Name = "张三" }); person1.Add(new Person() { Name = "李四" }); listbind.ItemsSource = person1; person2.Add(new Person() { Name = "张三" }); person2.Add(new Person() { Name = "李四" }); observbind.ItemsSource = person2; } private void button1_Click(object sender, RoutedEventArgs e) { person1.Add(new Person() { Name = "王五" }); person2.Add(new Person() { Name = "王五" }); } 运行程序点击button按钮,然后只有ObservableCollection的有添加。表示当集合对象的集合改变时,只有ObservableCollection会发出通知更新UI。
这只是他们两个区别之一。
2、举例2
以下方法可以更新ListView的UI:
private ObservableCollection<PreviewListModel> _previewList = new ObservableCollection<PreviewListModel>(); /// <summary> /// 预览信息列表 /// </summary> public ObservableCollection<PreviewListModel> PreviewList { get { return _previewList; } set { SetProperty(ref _previewList, value); } //set { _previewList = value; RaisePropertyChanged("PreviewList"); } }三、 ObservableCollection和List的互相转换
https://www.cnblogs.com/warioland/archive/2011/11/08/2240858.html
从数据库检索的云服务器出来的集合是List类型,我们需要把它转成ObservableCollection类型怎么办?如下方法:
T tList = new List(tObjectStruct .ToList()); ObservableCollection tObjectStruct = new数据库检索:
public void AdvancedSearchFunc(AdvancedSearchNotification advancedSearchNotification) { try { KrayMobileDREntities dataBase = new KrayMobileDREntities(); //每次使用前必须清零 patientInfoHistroryModel.Clear(); //先把数据库的数据提取出来,放到集合中。 List<PatientInfo_Table> patientInfoList = dataBase.PatientInfo_Table.Where(u => u.PatientKey.ToString().Equals(advancedSearchNotification.PatientInfo) || u.PatientID.ToString().Equals(advancedSearchNotification.StudyID) || u.PatientName.ToString().Equals(advancedSearchNotification.PatientName) ).ToList(); List<PatientStudy_Table> patientStudyList = dataBase.PatientStudy_Table.Where(u => u.PatientKey < 10).ToList(); //按条件检索集合 List<PatientInfoHistroryModel> list = (from pI in patientInfoList where (pI.PatientKey < 1000) select new PatientInfoHistroryModel() { PatientInfo = pI.PatientKey.ToString(), StudyID = pI.PatientID.ToString(), PatientName = pI.PatientName.ToString(), PatientSex = pI.PatientSex.ToString(), PatientAge = pI.PatientAge.ToString(), PatientBrith = pI.PatientBirthDate.ToString(), PatientHeight = pI.PatientHeight.ToString(), PatientWeight = pI.PatientWeight.ToString(), RecordSource = pI.PatientSource.ToString(), //StudyTime = PS.StudyDatetime, //EquipmentType = PS.StudyPhysician, //StudyPart = PS.StudyType, //SequenceAmount = PS.SeriesCount, StudyTime = pI.PatientAge.ToString(), EquipmentType = pI.PatientAge.ToString(), StudyPart = pI.HangFlag.ToString(), SequenceAmount = pI.HangFlag.ToString(), StudyStutas = pI.StudyCompleteFlag.ToString(), SuspendState = pI.HangFlag.ToString(), FilmPrint = pI.PrintFlag.ToString(), }).ToList(); patientInfoHistroryModel = list; dataBase.Dispose(); } catch (Exception ex) { MessageBox.Show("病人历史记录信息表【高级查询】状态下,发生数据库错误。错误信息:--------------" + ex.ToString()); LogHelper.Error("OperateDataSheetViewModel.cs::AdvancedSearchFunc()高级查询失败--" + ex.Message); }四、总结
1、ObservableCollection表示一个动态数据集合,在添加项、移除项或刷新整个列表时,此集合将提供通知。
2、List表示可通过索引访问的对象的强类型列表。提供用于对列表进行搜索、排序和操作的方法。(大部分操作用Linq,很强大也很方便。
参考连接:
https://blog.csdn.net/xpj8888/article/details/84782949
本文转载自微信公众号「CSharp编程大全」,可以通过以下二维码关注。转载本文请联系CSharp编程大全公众号。
很赞哦!(812)
相关文章
- 个人域名转为公司需要什么条件?个人域名转为公司该怎么做?
- 用了那么久的 Java For 循环,你知道哪种方式效率最高吗?
- 剖析 SPI 在 Spring 中的应用
- 超 Nice 的表格响应式布局小技巧
- 为了避免将来给我们的个人站长带来的麻烦,在选择域名后缀时,我们的站长最好省略不稳定的后缀域名,比如n,因为我们不知道策略什么时候会改变,更不用说我们将来是否还能控制这个域名了。因此,如果站长不是企业,或者有选择的话,如果不能选择域名的cn类,最好不要选择它。
- Vue3 用组合编写更好的代码:灵活的参数(2/5)
- 低代码并不意味着低风险
- 醒醒吧,你根本不适合用事件驱动架构
- 在众多公司中,如果我们必须选择一家可信的公司,那当然是信得过的。
- 超详细的日常开发必备神器 HttpUtil