public object GetView(System.ComponentModel.Design.ViewTechnology technology)
 {
     if (_rootView == null)
     {
         _rootView = new DiagramViewer(this);
     }
     return(_rootView);
 }
示例#2
0
 public object GetView(System.ComponentModel.Design.ViewTechnology technology)
 {
     _rootView = new MyRootControl(this);
     return(_rootView);
 }