private void SuccessButton_Click(object sender, EventArgs e) { clearAllTextBox(); currentlyDisplayed = displayedData.success; dataGridView1.DataSource = TestMergeAdapter.Adapt(mergeRes,mergeResultType.success); dataGridView1.Columns[0].Width = 180; dataGridView1.Columns[1].Width = 40; showBox(true, true); hideCopyOptions(); }
private void VBTestButton_Click(object sender, EventArgs e) { clearAllTextBox(); dataGridView1.DataSource = TestCaseAdapter.Adapt(mergeRes, resultType.VB); dataGridView1.Columns[0].Width = 220; currentlyDisplayed = displayedData.VB; showBox(false, true); hideCopyOptions(); }
private void MissmatchButton_Click(object sender, EventArgs e) { clearAllTextBox(); currentlyDisplayed = displayedData.missmatch; dataGridView1.DataSource = TestMergeAdapter.Adapt(mergeRes, mergeResultType.mismatch); dataGridView1.Columns[0].Width = 180; dataGridView1.Columns[1].Width = 40; showBox(true, true); }