예제 #1
0
        public void _init()
        {
            _target_filter_btn = new EButton("增加过滤类型", 100);
            _target_popup      = new EStringPopup("", 200);
            _target_popup.SetData(GetInof());

            _scrollview = new EScrollView(Ew - 20, Eh - 50);
            _scrollview.SetColor(Color.black);
        }
예제 #2
0
        public void _init()
        {
            _trigger_event_lab   = new ELabel("触发事件:", 50);
            _trigger_event_popup = new EStringPopup("", 200);

            List <StringPopupInfo> info = GetPop();

            _trigger_event_popup.SetData(info);

            _condition_lab   = new ELabel("触发条件:", 50);
            _condition_popup = new EEnumPopup(200);
            _condition_popup.SetData(E_GLOBAL_EVT.none);
        }
예제 #3
0
 public void SetData(List <StringPopupInfo> infos)
 {
     _target_popup = new EStringPopup("", 200);
     _target_popup.SetData(infos);
 }