下面小編就為大家帶來一篇C#中序列化實現深拷貝,實現DataGridView初始化重新整理的方法。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
winfrom中DataGridView在的儲存格在編輯時候會修改它的資料來源的,如果我們遇到這樣一種情景,重新整理資料來源到原始狀態,這個時候要麼資料來源的重新擷取綁定,要麼通過拷貝一份原始檔的資料再綁定處理,這裡介紹拷貝方式處理。
大致代碼如下:
1.目標對需要序列化,並實現ICloneable 介面:
[Serializable]public class DtoColumn : ICloneable2.實現介面方法Clone: public object Clone(){ using (MemoryStream ms = new MemoryStream(capacity)) { object CloneObject; BinaryFormatter bf = new BinaryFormatter(null, new StreamingContext(StreamingContextStates.Clone)); bf.Serialize(ms, this); ms.Seek(0, SeekOrigin.Begin); CloneObject = bf.Deserialize(ms); ms.Close(); return CloneObject; }}
3. 通過拷貝一份資料來達到重新整理的目的:
private List < dto.DtoColumn > DeepCloneData(List < dto.DtoColumn > rawdata) { return rawdata.Select(x = >x.Clone()).Cast < dto.DtoColumn > ().ToList()}this.dataGridView1.DoThreadPoolWork(() = >{ this.dataGridView1.DataSource = DeepCloneData(CloneInitialColumnData); this.dataGridView1.Refresh();});