C#中webBrowser1控件使用的问题,html文件不显示出来呀,咋回事,捉急
namespace ITS2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("C:/Users/my/Desktop/ITS2/ITS2/ITS/bin/Debug/bus3.html");
}
}
}
在winform窗体中添加了webBrowser控件,调用百度地图的html文件,但是现实运行之后什么都没显示,以前做过一个都能显示出来,
显示结果如下图:
------解决方案--------------------
webBrowser1.Navigate(new Uri(@"file:///C:/Users/my/Desktop/ITS2/ITS2/ITS/bin/Debug/bus3.html"));
------解决方案--------------------有加载项 貌似是有加载控件