//present the data in data grid public void presentDataInPriorityGrid() { if (!this.initPriorityGridData()) { MessageDxUnit.ShowWarning("initialize the priority grid failed"); } }
private void presentDataInCoverageGrid() { if (!this.initCoverageGridData()) { MessageDxUnit.ShowWarning("initialize the coverage grid failed"); } }
public void presentDataInTestSetGrid(List <Dictionary <string, Dictionary <string, string> > > testSet) { if (!this.initTestSetGridData(testSet)) { MessageDxUnit.ShowWarning("initialize the test set grid failed"); } presentDataInCoverageGrid(); }
// import the data from excel to the memory object public void getDataFromExcel(string path) { // load data from excel if (controller.loadData(path, "Priority")) { // MessageDxUnit.ShowTips("load data form excel success"); isDataLoad = true; this.variableRelationRibbonPageGroup.Enabled = true; this.analysisStrategyRibbonGroup.Enabled = true; this.clearDataItem.Enabled = true; this.controller.setProjectDefaultVaraibleRelation(); this.controller.setProjectDefaultAnalysisStrategy(); } else { MessageDxUnit.ShowWarning("load data form excel failed"); } }