public static void AddPredicitionStudy(List<IStudy> selectedStudyList, TreeNode treeNode, IPredictionGroup predictionGroup) { if (treeNode.StateImageIndex == 2) { string name = treeNode.Name; IStudy item = predictionGroup.Find(name); if (item != null) { selectedStudyList.Add(item); } } }
public void CreatXYForALlGroup(IPredictionGroup pg, System.Drawing.Color color, int count, string studyname) { IStudy study = pg.Find(studyname); Dictionary<MaxMinValue, int> intCountDic = this.m_PredictionStatisticsManager.CalcIntervalValue((IIntervalStudy) study); this.CreatGraphCDF(pg.Name, study as IIntervalStudy, color, count, intCountDic); }