Windows Forms: Context Menu Strip in C#
By FoxLearn 7/15/2017 5:47:22 PM 4.84K
How to use ContextMenuStrip in C# with right mouse click
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "ContextMenuStripExample" and then click OK
Step 2: Design your form as below
You need to drag a ContextMenuStrip control from the toolbox to your Form
Step 3: Add code to handle your form
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ContextMenuStripExample { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void backgroundToolStripMenuItem_Click(object sender, EventArgs e) { using(ColorDialog cd = new ColorDialog()) { if (cd.ShowDialog() == DialogResult.OK) btnMessage.BackColor = cd.Color; } } private void foregroundToolStripMenuItem_Click(object sender, EventArgs e) { //Open color dialog allows you to select color using (ColorDialog cd = new ColorDialog()) { if (cd.ShowDialog() == DialogResult.OK) btnMessage.ForeColor = cd.Color; } } } }
VIDEO TUTORIALS
- How to Add Combobox to DataGridView in C#
- How to Create Multiple pages on the Form using Panel control in C#
- How to insert Math Equation to RichTextBox in C#
- How to Send and Receive email in Microsoft Outlook using C#
- How to Print Windows Form in C#
- How to Use Form Load and Button click Event in C#
- How to use Advanced Filter DataGridView in C#
- How to use TagListControl in C#
Categories
Popular Posts
How to get Credentials in PowerShell?
10/03/2024
How to sign a powershell script
10/03/2024
How to implement Jint in C#
09/14/2024