Xwt.LinkEventArgs.SetHandled C# (CSharp) Method

SetHandled() public method

public SetHandled ( ) : void
return void
		public void SetHandled ()
		{
			Handled = true;
		}
	}

Usage Example

Ejemplo n.º 1
0
Archivo: Label.cs Proyecto: 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();
            }
        }
All Usage Examples Of Xwt.LinkEventArgs::SetHandled