示例#1
0
        /// <summary>
        /// Handles the Click event of the Explorer control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        void Explorer_Click(object sender, EventArgs e)
        {
            Form mySettings = new mySettings();

            mySettings.Show();
            //Process.Start("explorer", null);
        }
示例#2
0
        public void Display()
        {
            ni.MouseClick += new MouseEventHandler(ni_MouseClick);
            ni.Icon        = Resources.AMPDialer;
            ni.Text        = "AMP Dialer";
            ni.Visible     = true;

            ni.ContextMenuStrip = new ContextMenus().Create();
            Form f = new mySettings();
        }