Windows 7 snap - 编程方面
Windows 7 有一个新的“捕捉”功能,它在拖动“标准”窗口时应用。我确实有一个纯 win32 应用程序(不是 MFC 或任何其他框架),我用它来创建非正统的用户绘制窗口。
该窗口不“符合”Windows 7 snap,将其拖动到屏幕角落不会执行任何操作。
我的窗口中是否需要特殊的样式/类或类似的东西,以便 Windows 7 将其考虑到“捕捉”
Windows 7 has a new "snap" feature it applies when dragging "standard" windows. I do have a pure win32 application (not MFC or any other framework) that I use to create a non-orthodox user-drawn window.
That window does not "conform" to windows 7 snap and dragging it to screen corners will not do anything.
Do I need a special style/class or something similar in my window in order for windows 7 to take it into consideration for "snapping"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 WindowChrome 类位于 .NET 4 中可用的 Microsoft.Windows.Shell 命名空间中。如果您的目标是 .NET 3.5 SP1,则有一个向后移植的独立库 详细信息此处。
You will have to use the WindowChrome class which is in the Microsoft.Windows.Shell namespace available in .NET 4. If you are targeting .NET 3.5 SP1 there is a backported standalone library, details here.