private void button1_Click(object sender, EventArgs e) { string text = textBox1.Text; Uri uri = new Uri("http://"+textBox1.Text); webBrowser1.Url = uri; this.WindowState = FormWindowState.Maximized; //窗体最大化 }
时间: 2024-10-30 01:28:52
private void button1_Click(object sender, EventArgs e) { string text = textBox1.Text; Uri uri = new Uri("http://"+textBox1.Text); webBrowser1.Url = uri; this.WindowState = FormWindowState.Maximized; //窗体最大化 }