Exemple #1
0
        /// <summary>
        /// Called to handle the "add" action.
        /// </summary>
        /// <param name="addedItems"></param>
        /// <returns>True if items were added, false otherwise.</returns>
        protected override bool AddItems(out IList <ProtocolGroupSummary> addedItems)
        {
            addedItems = new List <ProtocolGroupSummary>();
            ProtocolGroupEditorComponent editor   = new ProtocolGroupEditorComponent();
            ApplicationComponentExitCode exitCode = ApplicationComponent.LaunchAsDialog(
                this.Host.DesktopWindow, editor, SR.TitleAddProtocolGroup);

            if (exitCode == ApplicationComponentExitCode.Accepted)
            {
                addedItems.Add(editor.ProtocolGroupSummary);
                return(true);
            }
            return(false);
        }
Exemple #2
0
        /// <summary>
        /// Called to handle the "edit" action.
        /// </summary>
        /// <param name="items">A list of items to edit.</param>
        /// <param name="editedItems">The list of items that were edited.</param>
        /// <returns>True if items were edited, false otherwise.</returns>
        protected override bool EditItems(IList <ProtocolGroupSummary> items, out IList <ProtocolGroupSummary> editedItems)
        {
            editedItems = new List <ProtocolGroupSummary>();
            ProtocolGroupSummary item = CollectionUtils.FirstElement(items);

            ProtocolGroupEditorComponent editor   = new ProtocolGroupEditorComponent(item.ProtocolGroupRef);
            ApplicationComponentExitCode exitCode = ApplicationComponent.LaunchAsDialog(
                this.Host.DesktopWindow, editor, SR.TitleEditProtocolGroup + " - " + item.Name);

            if (exitCode == ApplicationComponentExitCode.Accepted)
            {
                editedItems.Add(editor.ProtocolGroupSummary);
                return(true);
            }
            return(false);
        }