FairyGUI.GComboBox.__touchBegin C# (CSharp) 메소드

__touchBegin() 개인적인 메소드

private __touchBegin ( EventContext context ) : void
context EventContext
리턴 void
        private void __touchBegin(EventContext context)
        {
            if (context.initiator is InputTextField)
                return;

            _down = true;

            if (dropdown != null)
                ShowDropdown();

            context.CaptureTouch();
        }