What is the type of window of the components toolbox of VS.NET ?

  • Thread starter Thread starter Lior Bobrov
  • Start date Start date
L

Lior Bobrov

Hi ,
how is the toolbox window in C# called ?
I mean , what kind of window is it ? is it docking window ? floating window
? how is it called ?
(it appears when the mouse is on it , and disappears when mouse out) .

I think to put something like that in my program ...

Thanks in advance ,
Lior .
 
how is the toolbox window in C# called ?
I mean , what kind of window is it ?  is it docking window ? floating window
?  how is it called ?
(it appears when the mouse is on it , and disappears when mouse out) .

I think to put something like that  in my program ...

There's no out-of-the-box way to do the same thing with WinForms
controls that come with .NET Framework (though I'm sure that some
third-party control packs include something similar).

On a side note, not all inner windows and panes in VS2003-2008 are
even WinForms-based (or managed for that matter). In fact, most
aren't. So if you see something in VS, don't assume that there must be
an equivalent in WinForms.
 
Back
Top