LinkLabel label = new LinkLabel();
// imagine there is a code to initialize the label
label.Click += (sender, args) => callback1();
label.LinkClicked += (sender, args) => callback2();
如果我點擊標籤,任何地方,但不是它的鏈接,然後callback1()
被稱爲這是正確的。
如果我點擊標籤的鏈接,則調用callback1()
和callback2()
。點擊呼叫點擊和LinkClicked事件處理程序
我該如何撥打callback2()
?
使用兩個單獨的標籤。 –