文檔首頁>>FastReport中文文檔>>自定義鏈接
自定義鏈接
使用這種鏈接,您可以定義自己對鼠標(biāo)點擊的反應(yīng)。為此,請使用對象的 "Click(單擊)"事件處理程序。具體操作如下
- 選擇對象并打開 "Properties "窗口;
- 單擊按鈕,顯示對象的事件;
- 雙擊 "Click"事件。FastReport 將切換到 "Code "窗口并創(chuàng)建一個空的事件處理程序。
在處理程序的代碼中,完成您需要的所有操作。您很可能需要處理程序調(diào)用的對象鏈接和超鏈接的值。使用處理程序的參數(shù) sender:
private void Text2_Click(object sender, EventArgs e) { // sender - this is the object which was clicked. // In order to receive the value of the hyperlink, you need // to cast the sender to ReportComponentBase type. object hyperlinkValue = (sender as ReportComponentBase).Hyperlink.Value; MessageBox.Show("Hyperlink value = " + hyperlinkValue.ToString()); }