DataGridBoolColumn.TrueValueChanged Event

Definition

Occurs when the TrueValue property value is changed.

C#
public event EventHandler TrueValueChanged;

Event Type

Examples

The following code example demonstrates the use of this member.

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);
}

Remarks

For more information about how to handle events, see Handling and Raising Events.

Applies to

Ürün Sürümler
.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, 10