基本上我想要一个文本框打开浏览器,但是它不起作用:
private void TextBox1_Click(object sender, EventArgs e)
{
webBrowser1.Visible = true;
button3.Visible = true;
textBox1.ForeColor = Color.Purple;
}
答案 0 :(得分:0)
就像评论所暗示的那样,不清楚您要问什么。
WebBrowser是WinForms上的一个控件元素,您可以通过正确操作使其可见。
但是,如果您尝试打开一个实际的浏览器,则应按以下方式打开它:
System.Diagnostics.Process.Start("IExplore.exe");