Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LinkLabel... open in default web browser?

Tags:

c#

linklabel

Is it possible to open a LinkLabel in the default computers web browser?

like image 650
acctman Avatar asked Aug 22 '11 22:08

acctman


People also ask

What is a LinkLabel in C#?

A LinkLabel control is a label control that can display a hyperlink. A LinkLabel control is inherited from the Label class so it has all the functionality provided by the Windows Forms Label control. LinkLabel control does not participate in user input or capture mouse or keyboard events.

What is the difference between label and link label?

A link label is like a hyperlink that you'd see on a webpage. It's a label thats blue and has an underline and, when clicked, can point to a URL. A label is just a label.

What is link label in VB net?

LinkLabel is a class which is derived from label class so it has all the functions of label class. But LinkLabel also works as a hyperlink. Drag and drop LinkLabel control from toolbox on the window Form.


1 Answers

yes - you can use System.Diagnostics.Process.Start(url) in the "link clicked" event.

like image 71
Cheeso Avatar answered Sep 18 '22 22:09

Cheeso