public override bool ReinitWithArguments(GrtValue value)
        {
            InitializingControls = true;
              SuspendLayout();

              try
              {
            Backend = new MySQLRelationshipEditorWrapper(GrtManager, value);

            RefreshFormData();
              }
              finally
              {
            ResumeLayout();
            InitializingControls = false;
              }

              Invalidate();

              return true;
        }
        public override bool ReinitWithArguments(GrtValue value)
        {
            InitializingControls = true;
            SuspendLayout();

            try
            {
                Backend = new MySQLRelationshipEditorWrapper(value);

                RefreshFormData();
            }
            finally
            {
                ResumeLayout();
                InitializingControls = false;
            }

            Invalidate();

            return(true);
        }