Focusing WebBrowser control in a C# application

前端 未结 4 1705
-上瘾入骨i
-上瘾入骨i 2020-12-20 19:17

I have a WebBrowser control hosted in a windows Form. The control is used to display hyperlinks which get created at runtime. These links point to

4条回答
  •  感情败类
    2020-12-20 19:50

    Use form.ShowDialog(form) instead on form.Show(), then it will work !
    where form is the running instance of your windows Form

提交回复
热议问题