Click here to Skip to main content
6,595,854 members and growing! (17,340 online)
Email Password   helpLost your password?
Desktop Development » Miscellaneous » General     Intermediate

A VS.Net-like ToolBox

By Iulian Serban

This is a Visual Studio .NET like ToolBox control with animation and drag and drop support.
C#, Windows, .NET 1.0, Dev
Posted:19 Sep 2002
Views:165,184
Bookmarked:95 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
38 votes for this article.
Popularity: 6.87 Rating: 4.35 out of 5

1
1 vote, 4.2%
2
2 votes, 8.3%
3
5 votes, 20.8%
4
16 votes, 66.7%
5

Sample Image

Introduction

This is a Visual Studio .NET like ToolBox control. It has all the animations of the original plus some more. It is very customizable as you can see in the snapshot. I copied the icons and tabs from the real ToolBox so it looks just like the original.

The public methods

ToolBox(Size sz,int Button_Height,ContextMenu Menu)
  • sz -Needed Specifies the size of the ToolBox.
  •  
  • Button_Height -Optional Specifies the Height of the Buttons. If it is negative the default value is used
  •  
  • Menu -Optional Specifies the ListView`s context menu.
void AddTab(string Caption,int ImgIndex,ImageList ImgList)
void AddTab(ToolBoxTab Tab) 
  • AddTab adds another category to the ToolBox.
void AddItem(string Caption,int ImageIndex,int TabIndex)
void AddItem(ToolBoxItem Item, int TabIndex)
  • AddItem adds an item to the specified Tab in TabIndex
ToolBoxTab GetTab(int Index)
  • GetTab retrievs the ToolBoxTab object at the given index
int GetTabCount()
  • Returns the number of Tabs.
bool RemoveTab(int Index)
  • Removes the Tab specified in Index
bool RemoveItem(int TabIndex, int ItemIndex)
  • Removes the Item specified at the given indexes.
void Compress()
  • Makes the ToolBox to retreat.
void Expand()
  • Makes the ToolBox to Expand.
void EndAllMovement()
  • Stops all Tab movement.
bool ScrollUp()
  • Scrolls the visible ListView up one item if possible
bool ScrollDown()
  • Scrolls the visible ListView down one item if possible.
bool SetSize(Size sz)
  • Modifies the size of the ToolBox.

 

These are the main methods except three that I will explain here:

public delegate void OnToolBoxClick(int TabIndex,int ItemIndex);
public delegate void OnToolBoxTabChanged(int TabIndex);
public delegate void OnToolBoxStateChanged(int State);

These delegate types are events that the ToolBox sends. For example if you want to know when the current Tab is changed you do the following:

  1. Implement a method in your application like this:
    void OnTBTabChanged(int TabIndex)
  2. In when you init the ToolBox you need to let the ToolBox know what function to call when the event triggers:
    tb.SetTabChangedDelegate(new ToolBox.OnToolBoxTabChanged(OnTBTabChanged));
    Now your method will be called every time a new Tab is selected and receives the Tab`s index that you can use with the GetTab method.

     

The SetDelegate methods are:

void SetClickDelegate(OnToolBoxClick OnTBxClick)
  • This method sets the delegate method that is called when an item of the ListView is clicked.
void SetTabChangedDelegate(OnToolBoxTabChanged OnTBTabChange)
  • This method sets the delegate method that is called when a new Tab is selected
void SetStateChangedDelegate(OnToolBoxStateChanged OnTBStateChange)
  • This method sets the delegate method that is called when the state of the ToolBox changes. For example see the status Label in the Demo application.

 

The state of the ToolBox can be one of the following:

  1. ToolBox.States.Compressed = 1
  2. ToolBox.States.Compressing = 2
  3. ToolBox.States.Extended = 3
  4. ToolBox.States.Extending =4
enum States {Compressed=1,Compressing,Extended,Extending};

These are all the public methods.

The Properties

int DelayBeforeRetreat
  • This gets/sets the amount of time in miliseconds before the ToolBox starts to retreat when the mouse is no longer over it.
string DragDropSeparatorText
  • This gets/sets the Separator text between the Tab text and the Item text when Drag&Drop is performed
  • The default is ".".
SelectedTab
  • Tihs gets/sets the selected Tab. If a new tab is specified it will act like it was clicked by the user
int State
  • This gets the state of the ToolBox. if you want to change it's state call the Extend and Compress methods.
int TabAcceleration
  • This gets/sets the Tab movement acceleration
  • Default it is 2.
int TabTime
  • This gets/sets the time of the Tab movement in miliseconds.
int TimerInterval
  • This gets/sets the refresh timer interval.
string TitleText
  • This gets/sets the Title of the ToolBox.
Image ToolBoxImage
  • This gets/sets the Image used on the left of the ToolBox.

Adding a ToolBox to your application

This is very simple. Just do the following:

  1. Add a reference of the ToolBoxLib.dll.
  2. Add the following line of code at the beginning of your application:
  3. using ToolBoxLib
  4. Declare a variable of type ToolBox.
  5. In the constructor, after the InitializeComponent(); set the Toolbox's parameters.

Here is an example:

tb = new ToolBox(new Size(200,ClientRectangle.Height-28),18,ToolBoxContextMenu);
tb.Location = new Point(0,28);

tb.SetClickDelegate(new ToolBox.OnToolBoxClick(OnTBClick));
tb.SetTabChangedDelegate(new ToolBox.OnToolBoxTabChanged(OnTBTabChanged));
tb.SetStateChangedDelegate(new ToolBox.OnToolBoxStateChanged(OnTBStateChanged));
tb.Show();
this.Controls.Add(tb);
tb.BringToFront();

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Iulian Serban


Member
I am 18 years old and I have programmed for one year in C++ and MFC.
I am now programming in C# and .NET Framework.
Location: Romania Romania

Other popular Miscellaneous articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 39 (Total in Forum: 39) (Refresh)FirstPrevNext
GeneralNeed VB.NET Version Pinmemberkolag23:10 18 Nov '07  
GeneralReally Excellent Pinmemberkolag1:58 31 Oct '07  
GeneralHow can i move toolbar in the form? Pinmembersangram12:55 20 Oct '06  
GeneralMenu Pinmemberpatshiva23:52 15 Sep '05  
Generaltoolbox docking PinmembervrushaliD19:37 10 Jan '05  
GeneralRightToLeft Pinmemberperspolis23:32 29 Oct '04  
GeneralProblem with XP Home Version PinmemberCodingNDallas7:27 18 Feb '04  
GeneralPanels instead of TreeList PinsussVitolini21:19 13 Dec '03  
GeneralRe: Panels instead of TreeList Pinmemberfunvill19:27 1 Aug '04  
GeneralSelected Item PinsussAnonymous5:53 16 Jul '03  
GeneralWhat happens if I resize the Toolbox? PinmemberMikeI0:58 12 Jun '03  
GeneralRe: What happens if I resize the Toolbox? PinmemberIulian Serban5:15 12 Jun '03  
GeneralComments PinmemberMr.FB7:24 20 Mar '03  
GeneralRe: Comments PinmemberIulian Serban7:38 20 Mar '03  
GeneralRe: Comments PinmemberMr.FB10:00 21 Mar '03  
GeneralA Few Things PinmemberDamage_Inc0:46 11 Mar '03  
GeneralRe: A Few Things PinmemberDamage_Inc4:36 11 Mar '03  
GeneralExcellent example, comment about European programmer's PinmemberBJavierto6:07 8 Jan '03  
GeneralRe: Excellent example, comment about European programmer's PinmemberIulian Serban11:52 10 Jan '03  
GeneralHow to keep an item selected? PinmemberJeffrey Ganping Chen19:52 14 Dec '02  
GeneralRe: How to keep an item selected? PinmemberIulian Serban11:22 18 Dec '02  
GeneralRe: How to keep an item selected? PinmemberJeffrey Ganping Chen13:22 18 Dec '02  
GeneralLicensing and Distribution Pinmemberflipdoubt6:20 11 Dec '02  
GeneralRe: Licensing and Distribution PinmemberIulian Serban11:39 11 Dec '02  
GeneralSelectedTab PinsussAnonymous10:02 11 Nov '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Sep 2002
Editor: Chris Maunder
Copyright 2002 by Iulian Serban
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project