private void apComponentCM_rename_Click(object sender, EventArgs e)
        {
            if (this.curAPNode != null)
            {
                UITreeViewNode cn = this.curAPNode;
                cn.BeginEdit();
            }

            /* NOTE: The update in the DB is handled by the
             * afterAPLabelEdit_handler function
             */
        }
Beispiel #2
0
        /**
         * Rename group
         */
        private void ppGroupCM_rename_Click(object sender, EventArgs e)
        {
            if (this.curPPNode != null)
            {
                /* Get the group node object */
                UITreeViewNode cn = this.curPPNode;

                /* change the text value */
                cn.BeginEdit();

                /* NOTE: The update in the DB is handled by the
                 * afterPPLabelEdit_handler function
                 */
            }
        }