Ribbon for WinForms
ToolTipLinkClicked イベント (C1Ribbon)

C1.Win.Ribbon.4.5.2 アセンブリ > C1.Win.Ribbon 名前空間 > C1Ribbon クラス : ToolTipLinkClicked イベント
Event that fires when the user clicks a hyperlink within a tooltip.
シンタックス
'宣言
 
Public Event ToolTipLinkClicked As EventHandler(Of ToolTipLinkClickedEventArgs)
public event EventHandler<ToolTipLinkClickedEventArgs> ToolTipLinkClicked
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、ToolTipLinkClickedEventArgs 型の引数を受け取りました。次の ToolTipLinkClickedEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets the button that was clicked on the link.  
Gets the value of the link's HREF attribute.  
Gets the value of the link's TARGET attribute.  
解説

By default, tooltips are invisible to the mouse and therefore cannot be clicked. You must set the ToolTipSettings.HitTestVisible property is to true in order to make the tooltip visible to the mouse (and clickable).

Hyperlinks are created using "A" tags in the HTML source text. When hyperlinks are clicked, the ToolTipLinkClicked event fires and provides information about the link. The event handler can then take appropriate action.

参照