Exemple #1
0
        public void SetInfo(List <List <string> > contents)
        {
            List <System.Object> objs = new List <object>();

            for (int i = 0; i < contents.Count; i++)
            {
                TextureReportInfo info = new TextureReportInfo();
                info.SetInfo(contents[i]);
                objs.Add(info);
            }
            _panel.RefreshData(objs);
        }
Exemple #2
0
        public void OnSelectAnimation(object selected, int col)
        {
            TextureReportInfo info = selected as TextureReportInfo;

            if (info == null)
            {
                return;
            }

            List <System.Object> objs = new List <object>();

            for (int i = 0; i < info.BeRefs.Count; i++)
            {
                TmpStringInfo tmp = new TmpStringInfo();
                tmp._param1 = info.BeRefs[i];
                objs.Add(tmp);
            }
            _depTabPanel.RefreshData(objs);
        }