button with drop down

  • Thread starter Thread starter donald
  • Start date Start date
D

donald

Hi there,

Is there a button which i can use of a form which has a button and a
arrow next to it with a list of other buttons. Like New in Outlook or
Undo in Word?

Is there on in the .NET Framework?

Thanks

Donald
 
donald said:
Is there a button which i can use of a form which has a button and a
arrow next to it with a list of other buttons. Like New in Outlook or
Undo in Word?

Is there on in the .NET Framework?

No, except maybe for toolbars and toolstrips.
 
thanks for that Ken.

Got it in my project now

i add the code below But what is the best way of letting which one of
these i have clicked

Thanks

Donald

sb.ContextMenuStrip = new ContextMenuStrip();
sb.ContextMenuStrip.Items.Add("one");
sb.ContextMenuStrip.Items.Add("two");
sb.ContextMenuStrip.Items.Add("three");
 
Back
Top