我试图阻止用户拖动我的webbrowser控件中显示的图像。
我尝试过设置webbrowser.Document.MouseOver e.Cursor = Cursors.No仍然无法正常工作。
我尝试了其他一些方法。
我无法阻止在桌面上拖动图片。
是否可以防止将图像从web浏览器控件拖动到桌面?
答案 0 :(得分:2)
有一种方法可以阻止HTML文档的body元素处理拖动操作。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.webBrowser1.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(webBrowser1_DocumentCompleted);
this.webBrowser1.Url = new Uri("https://www.google.bg/search?q=stackoverflow&biw=1920&bih=950&source=lnms&tbm=isch&sa=X&sqi=2&ved=0ahUKEwjw2cWH4oTQAhVG8RQKHWCWB4AQ_AUIBigB");
}
private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
this.webBrowser1.Document.Body.Drag += new HtmlElementEventHandler(Body_Drag);
}
private void Body_Drag(object sender, HtmlElementEventArgs e)
{
e.ReturnValue = false;
}
}