Inheritance: System.EventArgs
Esempio n. 1
0
File: Label.cs Progetto: vipyami/xwt
        protected virtual void OnLinkClicked(LinkEventArgs e)
        {
            if (linkClicked != null)
            {
                linkClicked(this, e);
            }

            if (!e.Handled && e.Target != null)
            {
                Desktop.OpenUrl(e.Target);
                e.SetHandled();
            }
        }
Esempio n. 2
0
File: Label.cs Progetto: m13253/xwt
		protected virtual void OnLinkClicked (LinkEventArgs e)
		{
			if (linkClicked != null)
				linkClicked (this, e);

			if (!e.Handled && e.Target != null) {
				Desktop.OpenUrl (e.Target);
				e.SetHandled ();
			}
		}