Example #1
0
 /// <summary>
 /// Create a new instance that is bound to an <see cref="IModelView"/> abstraction
 /// of an option handler.
 /// </summary>
 /// <param name="view"><see cref="IModelView"/> abstraction
 /// of an option handler</param>
 protected EditorControl(IModelView view)
 {
     _id       = Guid.NewGuid();
     this.view = view;
     view.AddEditorControl(this);
     InitializeComponent();
 }