in this picture,I can see: MenuStrip,??,TextBox

how do I an bar like this that have the enumeration?
I hope this clear. Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re talking about the menu bar at the top of the window (just below the caption/title bar, which you should get for free from any
Formobject), then that is not aMenuStripcontrol.The
MenuStripcontrol doesn’t use the native Windows menu bar, which means it’s going to look very different on Windows Vista and later where the appearance of the standard menu bar was altered to be blue and plasticky. SinceMenuStripis drawn entirely in C# code, it’s going to look permanently cheesy and stick out like a sore thumb.If you want the standard Windows menu bar, you need to use the old
MainMenucontrol. This is what everyone used back in the early days of .NET, but it’s still available for backwards-compatibility and for people who care about what their apps look like. You’ll probably have to add it to the toolbox manually because it’s not there by default. Right-click on your toolbox and click “Choose Items”, then findMainMenuin the list of available controls and ensure that it is checked.As Blorgbeard suggested in the comments, if you’re talking about the line numbers and the text editing control, they’re not the standard
TextBoxcontrol, either. In fact, they’re not a standard Windows control at all. That’s a custom control designed specifically for editing code, probably Scintilla.You can find a .NET implementation here: http://scintillanet.codeplex.com/