我可以使用 C#/.NET 以编程方式禁用窗口自动播放功能吗?
有谁知道使用 c#/.NET 禁用 Windows 自动播放功能的方法吗?
Does anybody know a way to deactivate the autoplay function of windows using c#/.NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于所有其他正在寻找禁用/抑制自动播放的好方法的人来说,这是一个小总结。
到目前为止,我已经找到了 3 种以编程方式禁用自动播放的方法:
最后我选择第三种方法并使用 IQueryCancelAutoPlay 接口,因为其他方法有一些明显的缺点:
(QueryCancelAutoPlay) 只能
抑制自动播放,如果
应用程序窗口位于前台,因为只有前台窗口收到消息< /a>
实施示例
1。 QueryCancelAutoPlay
注意:如果您的应用程序使用对话框,则需要调用 SetWindowLong (signature) 而不是仅仅返回 false。请参阅此处了解更多详细信息)
2。注册表
使用注册表,您可以禁用指定驱动器号 (NoDriveAutoRun) 或一类驱动器的自动运行 (NoDriveTypeAutoRun)
3. IQueryCancelAutoPlay
其他一些链接:
A little summary, for all the others looking for a good way to disable/supress autoplay.
So far I've found 3 methods to disable autoplay programatically:
In the end I chose the 3rd method and used the IQueryCancelAutoPlay interface because the others had some signifcant disadvantages:
(QueryCancelAutoPlay) was only able
to suppress autoplay if the
application window was in the foreground, cause only the foreground window receives the message
Examples for the implementation
1. QueryCancelAutoPlay
Note: If your application is using a dialog box you need to call SetWindowLong (signature) instead of just returning false. See here for more details)
2. Registry
Using the registry you can disables AutoRun for specified drive letters (NoDriveAutoRun) or for a class of drives (NoDriveTypeAutoRun)
3. IQueryCancelAutoPlay
Some other links:
从此处(顶部的专家交流链接)。该网站上还有其他帮助,其中包含更多示例,这些示例可能比上面的更全面一些。不过上面确实解决了问题。
From here (The Experts-Exchange link at the top). There is additional help on that site with some more examples that may be a little more comprehensive than the above. The above does however solve the problem.
一些可能有用的其他链接:
自动播放显示了一些示例
vb.net 代码,显示了用法
CodeProject 上的“QueryCancelAutoPlay”。
Some additional links that might be helpful:
Auto-Playing shows some example
vb.net code, showing the usage of
"QueryCancelAutoPlay" on CodeProject.
试试这个代码对我有用:)有关更多信息,请查看此参考链接: http:// /www.pinvoke.net/default.aspx/user32.registerwindowmessage
Try this code work for me :) For more info check out this reference link : http://www.pinvoke.net/default.aspx/user32.registerwindowmessage