Customize Toolbars - Please Help

  • Thread starter msnews.microsoft.com
  • Start date
M

msnews.microsoft.com

Hi All,

As we have seen the customize toolbar windows in almost all windows programs
(Please right click on the toolbar portion in Microsoft Word and click on
customize).

I would like to add that to my application.

Can someone please guide me how will I do this in visual c#.NET?

Thanks for your time.

Regards
Anand Ganesh
 
S

Sean Hederman

The standard toolbars in .NET 1.1 don't support this functionality. There
are many, many third-party controls that will do this for you. I personally
like DevExpress, but they're a bit pricey.
 
N

Nicholas Paldino [.NET/C# MVP]

Anand,

.NET 1.1 and before doesn't really have anything like that which you can
use. There might be third party libraries that do this, but you will most
likely have to pay for them (I think the Magic library supported this, I am
not sure).

In .NET 2.0, however, there is a new toolstrip control which you can use
which I believe has this functionality. I would look in the
System.Windows.Forms namespace for the ToolStrip class.

Hope this helps.
 
M

msnews.microsoft.com

Hi Sean,

Thanks for the info.

This is really helpful for our company to take proper decission.

Regards
Anand Ganesh
 
M

msnews.microsoft.com

Hi Nicholas,

Thanks for the info. Will check this out.

Regards
Anand

Nicholas Paldino said:
Anand,

.NET 1.1 and before doesn't really have anything like that which you
can use. There might be third party libraries that do this, but you will
most likely have to pay for them (I think the Magic library supported
this, I am not sure).

In .NET 2.0, however, there is a new toolstrip control which you can
use which I believe has this functionality. I would look in the
System.Windows.Forms namespace for the ToolStrip class.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

msnews.microsoft.com said:
Hi All,

As we have seen the customize toolbar windows in almost all windows
programs
(Please right click on the toolbar portion in Microsoft Word and click on
customize).

I would like to add that to my application.

Can someone please guide me how will I do this in visual c#.NET?

Thanks for your time.

Regards
Anand Ganesh
 
M

MuZZy

msnews.microsoft.com said:
Hi All,

As we have seen the customize toolbar windows in almost all windows programs
(Please right click on the toolbar portion in Microsoft Word and click on
customize).

I would like to add that to my application.

Can someone please guide me how will I do this in visual c#.NET?

Thanks for your time.

Regards
Anand Ganesh

Check http://winforms.net, they have plenty links to different WinForms controls, and you might find
what you need there
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top