/// <summary>
        /// Execution of the Action.
        /// </summary>
        /// <returns>True:  Execution of the Action was successful</returns>
        public bool Execute(ActionCallingContext ctx)
        {
            using (Form form = new ApiExtSampleForm())
            {
                form.ShowDialog(WindowWrapper.GetEplanMainWindow());
            }

            return(true);
        }