MS WebBrowser + Embedded HTML Resource + res:// Protocol

前端 未结 7 1064
野趣味
野趣味 2020-12-17 21:34

I have an embedded HTML resource (helloworld.htm) inside my Visual Studio project. (Ie, I\'ve added an HTML file to the project and set its properties to \"Embedded Resource

7条回答
  •  天命终不由人
    2020-12-17 22:18

    webBrowser1.DocumentText = ResourceinWebBrowser.Properties.Resources.HTML.ToString();
    

    Where:

    • webBrowser1 is the WebBrowser control
    • ResourceinWebBrowser is your exe / Project Name.
    • HTML is the name of your embedded html resource

提交回复
热议问题