我已将 Flash 播放器(Shockwave Flash Object)嵌入到我的应用程序表单中。然后我想阻止用户右键单击。问题是我可以阻止用户的右键单击吗?
提前致谢..
WebBrowser
您可以使用控件嵌入您的 Flash 内容并将其设置IsWebBrowserContextMenuEnabled
为False,但我承认这个解决方案将是众所周知的大锤来破解坚果。
如果要使用System.Windows.Forms.WebBrowser,只需将所需的 Flash 内容指定为Navigate
目标:
Public Class Form1 Inherits Form
Public Sub New()
webBrowser1.IsWebBrowserContextMenuEnabled = False
webBrowser1.Navigate(New Uri(string_variable_path_to_flash))
End Sub
End Class