private void Attach(HexDisassemblerView control)
 {
     control.Load += Control_Load;
     control.Architectures.SelectedIndexChanged += Architecture_SelectedIndexChanged;
     control.Address.TextChanged  += Address_TextChanged;
     control.HexBytes.TextChanged += HexBytes_TextChanged;
 }
 public object CreateControl()
 {
     this.control = new HexDisassemblerView();
     this.Attach(control);
     return(control);
 }