DataGridBoolColumn.AllowNullChanged Evento

Definizione

Si verifica quando si modifica la proprietà AllowNull.

C#
public event EventHandler AllowNullChanged;

Tipo evento

Esempio

Nell'esempio di codice seguente viene illustrato l'uso di questo membro.

C#

private void RegisterEventHandlers(DataGridBoolColumn myDataGridBoolColumn)
{
   myDataGridBoolColumn.AllowNullChanged += 
      new System.EventHandler(myDataGridBoolColumn_AllowNullChanged);
   myDataGridBoolColumn.TrueValueChanged += 
      new System.EventHandler(myDataGridBoolColumn_TrueValueChanged);
   myDataGridBoolColumn.FalseValueChanged +=
      new System.EventHandler(myDataGridBoolColumn_FalseValueChanged);
}

// Event handler for event when 'TrueValue' is property changed.
private void myDataGridBoolColumn_TrueValueChanged(object sender, EventArgs e)
{
   MessageBox.Show("The TrueValue property of the DataGridBoolColumn has been changed to "
      + myDataGridBoolColumn.TrueValue);
}

// Event handler for event when 'FalseValue' is property changed.
private void myDataGridBoolColumn_FalseValueChanged(object sender, EventArgs e)
{
   MessageBox.Show("The FalseValue property of the DataGridBoolColumn has been changed to "
      + myDataGridBoolColumn.FalseValue);
}

// Event handler for event when 'AllowNull' is property changed.
private void myDataGridBoolColumn_AllowNullChanged(object sender, EventArgs e)
{
   MessageBox.Show("The AllowNull property of DataGridBoolColumn has been changed to "
      + myDataGridBoolColumn.AllowNull);
}

Si applica a

Prodotto Versioni
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0