Exemplo n.º 1
0
        /// <summary>
        /// Called when a link is clicked.
        /// </summary>
        /// <param name="e"></param>
        protected virtual void OnLinkClick(LinkClickEventArgs e)
        {
            var handler = LinkClick;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 private void _renderer_LinkClick(object sender, LinkClickEventArgs e)
 {
     OnLinkClick(e);
 }