Example #1
0
 void OnGUI()
 {
     if (_Frame != null)
     {
         RefreshStyles();
         _Frame.OnGUI();
     }
 }
        void OnGUI()
        {
            if (_Frame != null)
            {
                RefreshStyles();

                if (_FocuseText)
                {
                    _FocuseText = false;
                    _Frame.FocusControl(_TxtSearch);
                }
                _Frame.Update();
                _Frame.OnGUI();
            }
        }
Example #3
0
        public void OnGUI()
        {
            Event e = Event.current;

            if (e != null)
            {
                if (e.type == EventType.KeyDown)
                {
                    if (e.keyCode == KeyCode.Return)
                    {
                        _BtnCreate_Click(_BtnCreate, EventArgs.Empty);
                    }
                }
            }
            _Frame.OnGUI();
        }
Example #4
0
 void OnGUI()
 {
     _Frame.OnGUI();
 }
Example #5
0
 public void OnGUI()
 {
     _Frame.OnGUI();
 }