vote up 0 vote down star

The CodeRush file search tool "Quick File Navigation" looks pretty similar to a regular "Find" window. What type of window/form is that?

How do we create such windows that stay within the VS IDE (MDI I guess)?

flag

2 Answers

vote up 0 vote down

I believe they are called ToolWindows. WPF Window class has a WindowStyle property which lets you get that look. See images at the end of the link.

As for creating dockable toolwindows that stay within the VS IDE, google is your provider. I found this one which looks like what you need.

But toolwindows can go outside the bounds of the parent form... atleast the VS find-in-files window does.

link|flag
vote up 0 vote down

Gishu is right and its the same thing in WinForms: Form.WindowStyle = WindowStyle.ToolWindow. I use SandDock to get the Visual Studio IDE dockable environment.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.