Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am new to C# language,I have started to learn recently. I want to create pop-up menu by programming. I am using windows application form. I am able to create pop up menu by using "contextmenustrip" from tool box, but how to create without drawing from toolbox. I want to create it by programming. Can any one provide me some sample code or examples.

Thanks in advance.
Posted
Comments
Sergey Alexandrovich Kryukov 18-Feb-13 19:18pm    
System.Windows.Forms? Add a tag: WinForms.
—SA

ContextMenuStrip cmp = new ContextMenuStrip();
cmp.Items.Add("From");
cmp.Items.Add("To");
cmp.Items.Add("Reset");
this.ContextMenuStrip = cmp;

I have achieved this by using above code.
 
Share this answer
 
Use the MessageBox class' static method .Show()
I've demonstrated on of the over load below.
C#
MessageBox.Show("Message","BoxTitle", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900