Click here to Skip to main content
Click here to Skip to main content

User Customizable ToolStrip with Drag and Drop

By , 21 May 2010
 
Source

Introduction

With this library, written in VB.NET, you can add a 'Customize Toolbar' function to your application.

Background

I needed a customize toolbar function in my application, but I really couldn't find any library for .NET to implement this. So, I decided to write my own and share it to help others.

Using the Code

Add a reference to the DLL file. In the DLL, there is a class named CustomizeToolStrip. To use the library, you should make an instance of this class. Then you can set three things:

  • ToolStrip - The ToolStrip you want a customize function for
  • LanguageStrings - A Dictionary with strings used in the dialog
  • DefaultSetting - A String containing the code which is used when the user clicks the Reset button

To show the customize dialog, use ShowDialog(). This is a function which returns a String which you can save in your settings.
The second function is to reload the ToolStrip if you have saved the result of the ShowDialog() function. The ToolStrip is reloaded with the buttons/separators as the code in the String says.

Implementing the Customize Toolbar Function

If you just want to add the functionality with the basic functions, this code will do the complete job. Add it to the handler of a button, for example.

Dim t As UserCustomizableToolStrip.CustomizeToolStrip
t.ToolStrip = ToolStrip1
Dim chosenSetting = t.ShowDialog()

Then, you can save chosenSetting in My.Settings, for example. When loading your application, you can reload the ToolStrip again (assuming your Setting is called ToolStripSetting):

Dim t As UserCustomizableToolStrip.CustomizeToolStrip
t.ToolStrip = ToolStrip1
t.UpdateToolStripWithString(My.Settings.ToolStripSetting)

Adding a DefaultSetting to Enable the Reset Button

If you wish to add a Reset button, you obviously need to supply a default value in case the Reset button is clicked. This is a code as described above.

Adding a LanguageStrings to Use Another Language

In case you need to change the wording in the dialog, you can set other Strings in the LanguageStrings, which is a Dictionary. For example, a Dutch version would be:

Dim lang As New Dictionary_
	(Of UserCustomizableToolStrip.CustomizableToolStripLanguageStrings, String)

lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.Add, _
	"Toevoegen ->")

lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings._
	AvailableToolBarButtons, "Beschikbare items:")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.Cancel, _
	"Annuleren")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings._
	CurrentToolBatButtons, "Huidige items:")

lang.Add_
    (UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.MoveDown, "Omlaag")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.MoveUp, "Omhoog")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.OK, "OK")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.Remove, _
	"<- Verwijderen")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.Reset, _
	"Beginwaarden")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.Separator, _
	"Scheidingsteken")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.TitleBar, _
	"Werkbalk aanpassen")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.WarningText, _
	"Weet u zeker dat u de werkbalk wilt herstellen naar de beginwaarden?")
lang.Add(UserCustomizableToolStrip.CustomizableToolStripLanguageStrings.WarningTitle, _
	"Werkbalk aanpassen")

t.LanguageStrings = lang

More About the Code of the Chosen Setting

The code that the ShowDialog function returns (and which you have to supply for the Reset button) has a very simple lay-out:

|Item1|Item2|Item3|... 

Each item (Item1, ...) corresponds to either a ToolStripItem or equals the word Separator. The order of the items is the order of which the buttons and separators appear in the ToolStrip.

Points of Interest

I'm only 14 years old, and I'm happy I managed to write this code. If you use this component in your application, please let me know about it. I'd love to see my component in action.

Bugs/Notes/etc.

  • Please do not use the word 'Separator' as the name of any of your ToolStripItems
  • Not implemented - Nothing

References

History

  • 21-05-2010
    • Rewritten most of the code, enhancing the simplicity of the use
  • 06-02-2009
    • Reset button
    • .Name used instead of .Tag (you don't have to specify the .Tag properties anymore)
    • Fixed some issues with the demo
  • 02-02-2009
    • First release

License

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

About the Author

pimb2
Netherlands Netherlands
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionDownload but reset button is missingmemberAACINC5 Jan '12 - 9:46 
AnswerRe: Download but reset button is missingmemberpimb25 Jan '12 - 11:05 
GeneralRe: Download but reset button is missingmemberAACINC6 Jan '12 - 2:37 
GeneralMy vote of 5memberMember 840416715 Nov '11 - 21:33 
GeneralNice work - suggestions for improvementsmemberTobiasP15 Feb '09 - 9:27 
GeneralRe: Nice work - suggestions for improvementsmemberpimb215 Feb '09 - 9:37 
GeneralRe: Nice work - suggestions for improvementsmemberTobiasP15 Feb '09 - 10:39 
GeneralRe: Nice work - suggestions for improvementsmemberpimb216 Feb '09 - 4:29 
GeneralGreat job!memberShane Story6 Feb '09 - 4:03 
GeneralRe: Great job!memberpimb27 Feb '09 - 0:32 
GeneralNew versionmemberpimb25 Feb '09 - 8:59 
GeneralVery good! One issue though.memberAnt21004 Feb '09 - 0:49 
GeneralRe: Very good! One issue though.memberpimb24 Feb '09 - 4:34 
AnswerRe: Very good! One issue though.memberAnt21004 Feb '09 - 6:57 
GeneralNamesmemberMember 45139853 Feb '09 - 10:04 
GeneralRe: Namesmemberpimb24 Feb '09 - 8:50 
GeneralRe: NamesmemberMember 45139854 Feb '09 - 8:53 
GeneralRe: Namesmemberpimb24 Feb '09 - 8:56 
GeneralRe: NamesmemberMember 45139854 Feb '09 - 8:57 
GeneralBugmemberpimb23 Feb '09 - 7:46 
GeneralVery Nice Work!memberrspercy582 Feb '09 - 15:12 
GeneralNice work...memberPaul Selormey2 Feb '09 - 8:43 
GeneralGood!memberJose M. Menendez Poó2 Feb '09 - 8:15 
GeneralRe: Good!memberpimb22 Feb '09 - 8:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 21 May 2010
Article Copyright 2009 by pimb2
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid