Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
2.80/5 (5 votes)
See more:
I want to remove underline of LinkLabel in c# in window application.

I have choosed the properties and select-
Font-underline="false" but it is not working.

So tell me?
Posted
Updated 22-Jul-16 21:50pm

Try with LinkBehavior property.

Me.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;


More details here:

http://msdn.microsoft.com/en-us/library/system.windows.forms.linklabel.linkbehavior(v=VS.71).aspx[^]


Cheers!
 
Share this answer
 
Try this:
C#
public void RemoveUnderline(LinkLabel link)
{
    link.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
}
 
Share this answer
 
v2
Comments
ridoy 11-Aug-13 13:15pm    
good one,upvoted.
Simply go to the form section and go properties,search "link behavior" its on "system default state" click on it and select "never underline".
Form>properties>link behavior>select system default and change it into never underline.
 
Share this answer
 
Comments
Richard MacCutchan 23-Jul-16 4:12am    
This question is almost 5 years old!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900