I would like to construct a user control the looks similar the the .net toolbox. Whereby the buttons move to the bottom of the toolbox as you "Scroll" through the options.
Is there a simple way to implement this.
Any Ideas?
Printable View
I would like to construct a user control the looks similar the the .net toolbox. Whereby the buttons move to the bottom of the toolbox as you "Scroll" through the options.
Is there a simple way to implement this.
Any Ideas?
I managed to create a "similar" toolbox very simply.
Using a panel, place the required buttons on the form and set the docking property of each button to top.
Then when each button is clicked set that buttons docking property to bottom and the others to top. Perhaps not quite the same but its a start and I does the job.