private void TaxShowToolTip(string text) { SSSPopup.Show(text, TaxExemptionGRD, new Point( TaxExemptionGRD.GetCellDisplayRectangle(TaxExemptionGRD.CurrentCell.ColumnIndex, TaxExemptionGRD.CurrentCell.RowIndex, true).X + 50, TaxExemptionGRD.GetCellDisplayRectangle(TaxExemptionGRD.CurrentCell.ColumnIndex, TaxExemptionGRD.CurrentCell.RowIndex, true).Y + 40), 1500); TaxExemptionGRD.CurrentCell.Value = _currentval; }
private void TaxRemoveExBTN_Click(object sender, EventArgs e) { TaxExemptionGRD.Rows.RemoveAt(TaxExemptionGRD.SelectedRows[0].Index); TaxExemptionGRD.ClearSelection(); }