2013-01-15 34 views

回答

0

加载您的嵌入式网页可以用的东西沿着这些线路from msdn来实现:

try 
{ 
    _assembly = Assembly.GetExecutingAssembly(); 
    _textStreamReader = new StreamReader(_assembly.GetManifestResourceStream("MYHTMLFile.html")); 
} 
catch 
{ 
    MessageBox.Show("Error accessing resources!"); 
} 

该页面还详细介绍了步骤嵌入。

在你的情况下(我认为)你必须在使用IE加载之前将流保存到磁盘。

相关问题