Reputation: 2888
When display PPT slides on WebBrowser controls in .NET framework, how do I disable all user interaction via mouse / keyboard?
I've tried to intercept mouse inputs to the WebBrowser by placing it in a usercontrol but got no luck.
Upvotes: 2
Views: 314
Reputation: 4965
If you don't want any user interaction, why not convert the PowerPoint to a video? It can be done programmatically. See this.
Upvotes: 0
Reputation: 637
As i know - Webbrowser component don't provide some features to control mouse or keyboard inputs, instead of that, it's provide a reach features on controlling links-mouse clicks and other events to DOM document model. So the only way to achieve this as i see - it's a set global hooks on your application. Global hooks is not simple thing, but there is many info's about this.
Upvotes: 1