Beispiel #1
0
        /// <summary>
        /// Edit this command.
        /// </summary>
        /// <param name="parent">The parent window.</param>
        /// <returns><c>true</c> if the command was modified; otherwise <c>false</c>.</returns>
        public override bool Edit(IWin32Window parent)
        {
            EditGotoScreen edit = new EditGotoScreen(Parameters[0]);

            if (edit.ShowDialog(parent) == DialogResult.OK)
            {
                Parameters[0] = edit.ScreenID;
                return(true);
            }

            return(false);
        }
    /// <summary>
    /// Edit this command.
    /// </summary>
    /// <param name="parent">The parent window.</param>
    /// <returns><c>true</c> if the command was modified; otherwise <c>false</c>.</returns>
    public override bool Edit(IWin32Window parent)
    {
      EditGotoScreen edit = new EditGotoScreen(Parameters[0]);
      if (edit.ShowDialog(parent) == DialogResult.OK)
      {
        Parameters[0] = edit.ScreenID;
        return true;
      }

      return false;
    }