How to add a MiniToolBar to the form and associate it with the controls in the form?
Adding MiniToolBar to the form
To add a MiniToolBar to the form, follow the below given steps.
- Drag and drop a MiniToolBar from the toolbox.
- Open the Items Collection Editor of the MiniToolBar.
- Add the required items into the MiniToolBar from the Items Collection Editor and click Ok.
- Now, drag and drop the control with which the MiniToolBar is to be associated, for eg. a RichTextBox.
- Set the MiniToolBar's AssociatedControl property to the control to which this is to be associated.
C#
this.miniToolBar1.AssociatedControl = this.richTextBox1;
VB
Me.miniToolBar1.AssociatedControl = Me.richTextBox1
- Run the sample and right click on the richTextBox to view the MiniToolBar