Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When creating a context menu, is there a way to have header text included? For example, when a user clicks a button, I want a context menu to show with two options. There should also be text above the options, with a sentence such as: 'Please select an option'.

Is this possible?

Thanks.

share|improve this question

2 Answers

up vote 4 down vote accepted

You can't do it with the designer but you can do it in code:

public partial class Form1 : Form {
    public Form1() {
        InitializeComponent();
        contextMenuStrip1.Items.Insert(0, new ToolStripLabel("Please select an option"));
        contextMenuStrip1.Items.Insert(1, new ToolStripSeparator());
    }
}
share|improve this answer
Thanks Hans. It was programmatically that I was looking for. I'll use this now. – Darren Young Jan 4 '11 at 15:53

You can make a menu with 4 elements in this order:

  • "Please select an option" -Disabled (this make it gray out and unlickable)
  • Separator (------)
  • Option1 -Enabled
  • Option2 -Enabled
share|improve this answer
In addition to making it disabled, mess around with it's colors to give it the proper look (if that matters to you) – Caladain Jan 4 '11 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.