According to http://msdn.microsoft.com/en-us/library/system.windows.forms.linklabel.aspx, the LinkLabel
class has both a Click
event inherited from System.Windows.Forms.Control
and a LinkClicked
event. From my understanding, Click
event will trigger the LinkClicked
event.
Why on earth have a LinkClicked
event?? What's wrong with the Click
event? Are there other ways to trigger LinkClicked
besides clicking?