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

GComboBox() 공개 메소드

public GComboBox ( ) : System
리턴 System
        public GComboBox()
        {
            visibleItemCount = UIConfig.defaultComboBoxVisibleItemCount;
            _itemsUpdated = true;
            _selectedIndex = -1;
            _items = new string[0];
            _values = new string[0];
            _popupDirection = "down";

            onChanged = new EventListener(this, "onChanged");
        }