예제 #1
0
 public virtual void Add(View view)
 {
     if (view == null)
     {
         return;
     }
     view.Parent     = this;
     view.Navigation = Parent?.Navigation;
     Content         = view;
     TypeHashCode    = view.GetContentTypeHashCode();
 }