public void SetInfo(List <List <string> > contents) { List <System.Object> objs = new List <object>(); for (int i = 0; i < contents.Count; i++) { AnimationReportInfo info = new AnimationReportInfo(); info.SetInfo(contents[i]); objs.Add(info); } _panel.RefreshData(objs); }
public void OnSelectAnimation(object selected, int col) { AnimationReportInfo info = selected as AnimationReportInfo; 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); }