0

これは、データグリッドに数値のみを入力するための Microsoft Web サイトの機能であり、正常に機能します。

最初の行の最初のセルの値が数値の場合、ボタンを有効にしたいですか??? これどうやってするの??

 private void dataGridView1_CellValidating(object sender,
    DataGridViewCellValidatingEventArgs e)
        {
            ThermalDatGrid.Rows[e.RowIndex].ErrorText = "";
            int newInteger;

            // Don't try to validate the 'new row' until finished 
            // editing since there
            // is not any point in validating its initial value.
            if (ThermalDatGrid.Rows[e.RowIndex].IsNewRow) {
                return;
            }
            if (!int.TryParse(e.FormattedValue.ToString(),
                out newInteger) || newInteger < 0)
            {
                e.Cancel = true;
                ThermalDatGrid.Rows[e.RowIndex].ErrorText = "Only Numerical and Non Negative Values";
            }
        }
4

1 に答える 1

2

試す:

if (!int.TryParse(e.FormattedValue.ToString(),
             out newInteger) || newInteger < 0)
{
   e.Cancel = true;
   ThermalDatGrid.Rows[e.RowIndex].ErrorText = "Only Numerical and Non Negative Values";
}
else
{
   yourButton.Enabled=true;
}
于 2012-06-07T13:32:11.750 に答える