窗户类型

发布于 2024-07-13 04:31:49 字数 108 浏览 11 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一片旧的回忆 2024-07-20 04:31:49

我相信它们被称为 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.

歌入人心 2024-07-20 04:31:49

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文