/// <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); }
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(); }