Floating forms

  • Thread starter Thread starter Isaac Varghese
  • Start date Start date
I

Isaac Varghese

HI,
Is it possible to create a floating/dockable form in C# winforms.
Something similar to Properties/Solution Explorer window in Visual
Studio.net or Search/Index window in MSDN.

Any help or input is appreciated.

Thanks in advance
Isaac Varghese
TCS
London
 
Thanks a lot.

Re: Floating forms
From: Branimir Giurov
Date Posted: 1/15/2004 5:26:00 AM



Yes - you should do it with a custom control.
Take panel control and add the controls you want in it. Then you need to
hide/show it on MouseEnter event of the label you're defining.

There are few dockable controls on the market that you can buy if you
don't
want to build your own.
Also there is something ready on the codeproject:
http://www.codeproject.com/cs/miscctrl/magicdocking.asp?target=dockable%
7Ccontrols


--
Branimir Giurov
MCSD.NET, MCDBA
eAgility LLC

Isaac Varghese said:
HI,
Is it possible to create a floating/dockable form in C# winforms.
Something similar to Properties/Solution Explorer window in Visual
Studio.net or Search/Index window in MSDN.

Any help or input is appreciated.

Thanks in advance
Isaac Varghese
TCS
London

Isaac Varghese
MS.NET
TCS
 
Back
Top