Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该ShowWithoutActivation方法的 MSDN 页面 -此处-处于无窗口Form状态。ToolStripItem
ShowWithoutActivation
Form
ToolStripItem
控件无窗口意味着什么?他们的目的是什么?如何制作自己的无窗口控件?
在底层 Windows 体系结构中,控件基本上是一个无边框的窗口。他们90%是一样的。
另一方面,ToolStripItem 不是从 Control 派生的。它不绘制自己,它没有窗口句柄或消息队列。ToolStripItem 只是一个用作 ToolStrip 的组织扩展的类。ToolStrip 将许多消息和事件转发到 ToolStripItems。
这样做的目的是提高性能并提高透明度。