摘要: 首先让你的数据类实现接口 ICloneable 比如: public class Info : INotifyPropertyChanged, ICloneable { // 实现ICloneable的Clone函数 public object Clone() { return this; //注意 阅读全文
posted @ 2021-08-12 16:19 宋桓公 阅读(171) 评论(0) 推荐(0) 编辑