1
You can link to a site in the Strip Menu of Windows Forms?
I have the following code snippet in the click of my menu, but does not open the link.
private void menuSobre_Click(object sender, EventArgs e)
{
WebBrowser webBrowser1 = new WebBrowser();
webBrowser1.Document.Window.Open("http://www.meusite.com.br","_blank", "location", true);
}
What should I do?
You want to click on the menu and open the browser to go to the endeço?
– Jéf Bueno
Yes @jbueno. That’s what I want
– Raphael Prado de Oliveira