91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# ObservableCollection和List的區別是什么

發布時間:2021-06-17 17:47:15 來源:億速云 閱讀:777 作者:chen 欄目:編程語言

這篇文章主要講解了“C# ObservableCollection和List的區別是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C# ObservableCollection和List的區別是什么”吧!

一、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,很強大也很方便。

感謝各位的閱讀,以上就是“C# ObservableCollection和List的區別是什么”的內容了,經過本文的學習后,相信大家對C# ObservableCollection和List的區別是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

虹口区| 类乌齐县| 大庆市| 紫阳县| 扎囊县| 古交市| 泰来县| 平原县| 吴江市| 陇川县| 连州市| 章丘市| 九台市| 石棉县| 乳山市| 平利县| 黑山县| 佛冈县| 宝兴县| 山阳县| 汉阴县| 岐山县| 宣武区| 探索| 运城市| 乌拉特前旗| 贵溪市| 绥化市| 伊川县| 屏南县| 抚宁县| 乳源| 博客| 罗平县| 高要市| 信丰县| 鲜城| 金堂县| 莱阳市| 肃北| 紫金县|