Example #1
0
 internal ContextMenuSubscription(SubscriptionTreeNodeSession node)
     : this()
 {
     m_Node = node;
 }
Example #2
0
        /// <summary>
        /// Handles the Click event of the m_TSMI_Dlete control.
        /// Remove an item in the specified subscription.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        private void TSMI_ItemDelete_Click(object sender, EventArgs e)
        {
            SubscriptionTreeNodeSession sb = m_Node.Parent;

            sb.RemoveItemNode(m_Node);
        }