如何将自定义 ObservableCollection 元素复制到另一个自定义 ObservableCollection?

How to copy custom ObservableCollection elements to another custom ObservableCollection?

我创建了一个 MTObservableCollection class,它派生自用于多线程的 ObservableCollection。这是函数的样子:

public class MTObservableCollection<T> : ObservableCollection<T> where T: LogClassa
    {
        public MTObservableCollection() { }

        public override event NotifyCollectionChangedEventHandler CollectionChanged;
        protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
        {
            NotifyCollectionChangedEventHandler CollectionChanged = this.CollectionChanged;
            if (CollectionChanged != null)
                foreach (NotifyCollectionChangedEventHandler nh in CollectionChanged.GetInvocationList())
                {
                    DispatcherObject dispObj = nh.Target as DispatcherObject;
                    if (dispObj != null)
                    {
                        Dispatcher dispatcher = dispObj.Dispatcher;
                        if (dispatcher != null && !dispatcher.CheckAccess())
                        {
                            dispatcher.BeginInvoke(
                                (Action)(() => nh.Invoke(this,
                                    new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset))),
                                DispatcherPriority.DataBind);
                            continue;
                        }
                    }
                    nh.Invoke(this, e);
                }
        }
    }

这是我的 LogClass

public class LogClass : INotifyPropertyChanged
{
    private string timestamp;
    private string title;
    private string message;
    private MTObservableCollection<LogClass> childRowLog = new MTObservableCollection<LogClass>();

    public string TimeStamp 
    {
         get { return timestamp; }
         set 
         {
              if( timestamp != value )
              {
                   timestamp = value;
                   OnPropertyChanged("TimeStamp");
              }
         }
    }

    public string Title
    {
         get { return title; }
         set 
         {
              if( title!= value )
              {
                   title= value;
                   OnPropertyChanged("Title");
              }
         }
    }

    public string Message
    {
         get { return message; }
         set 
         {
              if( message!= value )
              {
                   message= value;
                   OnPropertyChanged("Message");
              }
         }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void OnPropertyChanged(string name)
    {
         PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
    }
}

因此,如果我有两个 MTObservableCollection 集合,我向其中之一添加元素,例如:

public static MTObservableCollection<LogClass> parentLogCollection = new MTObservableCollection<LogClass>();
public MTObservableCollection<LogClass> childLogCollection = new MTObservableCollection<LogClass>();

childLogClass.Add( new LogClass { TimeStamp = "time", Title = "title", Message = "message" } );

现在如果我想将 childLogCollection 添加到 parentLogCollection,我会这样做:

parentLogCollection = new MTObservableCollection<LogClass>(childLogCollection);

我想我需要在 MBObservationCollection class 中创建一个实现,它应该是

public MTObservableCollection(MTObservableCollection<T> collection)
{

}

我只是不知道输入什么,我该如何执行?

尝试像这样更改 MTObservableCollection 的父级:

public MTObservableCollection(MTObservableCollection<T> collection) : base(collection)
{

}