Пример #1
0
 void NestedInputHandler_Removed(ITextAreaInputHandler handler)
 {
     if (isAttached)
     {
         handler.Detach();
     }
 }
        /// <summary>
        /// reset flag as an asynchronous operation.
        /// </summary>
        protected async Task ResetFlagAsync()
        {
            await Task.Delay(100);

            handleAllEvents = false;
            if (mouseHandler != null)
            {
                mouseHandler.Detach();
                NestedInputHandlers.Add(mouseHandler);
            }
        }
Пример #3
0
		void NestedInputHandler_Removed(ITextAreaInputHandler handler)
		{
			if (isAttached)
				handler.Detach();
		}
 private void NestedInputHandler_Removed(ITextAreaInputHandler handler)
 {
     if (IsAttached)
         handler.Detach();
 }