tags:

views:

25

answers:

1

Is it possible to link my labels to and image saved on my desktop???

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{

}
A: 

Set your href link attribute to a local url like:

href="file://localhost/c:/winnt/help/ciadmin.htm"

Or this MSDN example

Anyway I think you should consider why are you doing such thing. please give a glance to this article first

SDReyes
does this method work for a Winforms C# language!
JB
these methods work for a webpage...but i dont believe they work for a windows form application...
JB
Hi JB, which window forms component are you using specifically?
SDReyes