窗户类型
CodeRush 文件搜索工具“快速文件导航”看起来与常规“查找”窗口非常相似。 那是什么类型的窗口/表单?
我们如何创建这样的保留在 VS IDE 中的窗口(我猜是 MDI)?
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)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信它们被称为 ToolWindows。 WPF Window 类有一个 WindowStyle 属性,让你得到那个样子。 请参阅链接末尾的图像。
至于创建驻留在 VS IDE 中的可停靠工具窗口,google 是您的提供商。 我发现这个看起来像你所需要的。
但是工具窗口可以超出父窗体的范围...至少 VS find-in-files 窗口可以。
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.
Gishu 是对的,在 WinForms 中也是一样的:
Form.WindowStyle = WindowStyle.ToolWindow
。 我使用 SandDock 来获取 Visual Studio IDE 可停靠环境。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.