DataGridTableStyle::SelectionBackColorChanged Event
.NET Framework (current version)
Occurs when the SelectionBackColor value changes.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
For more information about handling events, see Handling and Raising Events.
The following code example demonstrates the use of this member.
public: void AttachSelectionBackColorChanged() { // Handle the 'SelectionBackColorChanged' event. myGridTableStyle->SelectionBackColorChanged += gcnew EventHandler( this, &MyForm::MyDataGrid_SelectedBackColorChanged ); } private: void MyDataGrid_SelectedBackColorChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { MessageBox::Show( "SelectionBackColorChanged event was raised, Color changed to " + myGridTableStyle->SelectionBackColor ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: