Allora andando a questo link ho scaricato la dll Crom per creare delle Properties Grid simili a questa:
[SPOILER][/SPOILER]

Allora il modo in C# per creare la toolbar è questo:
codice:
private void ShowNewForm ()
{
   // Create a new instance of the child form.
   DockableToolWindow childForm = new DockableToolWindow ();

   // Add the form to the dock container
   _dockContainer1.AddToolWindow (childForm);

   // Show the form
   childForm.Show ();
}
Volevo sapere come metterlo in vb.net...

Grazie