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

前端 未结 7 1054
野趣味
野趣味 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
    0 讨论(0)
提交回复
热议问题