public SnappableControl(Control parent, MyPropertyGrid ownerGrid)
 {
     _parent = parent;
     _parent.HandleCreated   += _parent_HandleCreated;
     _parent.HandleDestroyed += _owner_HandleDestroyed;
     _ownerGrid = ownerGrid;
 }
 public PropertyGridView(Control parent, MyPropertyGrid ownerGrid)
 {
     _parent = parent;
     _parent.HandleCreated   += _owner_HandleCreated;
     _parent.HandleDestroyed += _owner_HandleDestroyed;
     _ownerGrid = ownerGrid;
 }