DataGridView.RowDefaultCellStyleChanged Událost

Definice

Nastane, když se změní hodnota DefaultCellStyle vlastnosti pro řádek.

public:
 event System::Windows::Forms::DataGridViewRowEventHandler ^ RowDefaultCellStyleChanged;
public event System.Windows.Forms.DataGridViewRowEventHandler RowDefaultCellStyleChanged;
public event System.Windows.Forms.DataGridViewRowEventHandler? RowDefaultCellStyleChanged;
member this.RowDefaultCellStyleChanged : System.Windows.Forms.DataGridViewRowEventHandler 
Public Custom Event RowDefaultCellStyleChanged As DataGridViewRowEventHandler 

Event Type

Příklady

Následující příklad kódu ukazuje použití tohoto člena. V příkladu obslužná rutina události hlásí výskyt RowDefaultCellStyleChanged události. Tato sestava vám pomůže zjistit, kdy k události dojde, a může vám pomoct s laděním. Pokud chcete hlásit více událostí nebo událostí, ke kterým dochází často, zvažte nahrazení MessageBox.ShowConsole.WriteLine nebo připojení zprávy k víceřádkovému TextBoxobjektu .

Pokud chcete spustit ukázkový kód, vložte ho do projektu, který obsahuje instanci typu DataGridView s názvem DataGridView1. Pak se ujistěte, že je obslužná rutina události přidružená k RowDefaultCellStyleChanged události.

private void DataGridView1_RowDefaultCellStyleChanged(Object sender, DataGridViewRowEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "Row", e.Row );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RowDefaultCellStyleChanged Event" );
}
Private Sub DataGridView1_RowDefaultCellStyleChanged(sender as Object, e as DataGridViewRowEventArgs) _ 
     Handles DataGridView1.RowDefaultCellStyleChanged

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "Row", e.Row)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"RowDefaultCellStyleChanged Event")

End Sub

Poznámky

K této události dochází, když je jakákoli vlastnost DataGridViewCellStyle vrácená DefaultCellStyle vlastností pro řádek nastavena na novou hodnotu nebo když DefaultCellStyle je vlastnost pro řádek nastavena na novou DataGridViewCellStyle s alespoň jednou hodnotou vlastnosti odlišnou od předchozího objektu stylu buňky.

Další informace o zpracování událostí najdete v tématu Zpracování a vyvolávání událostí.

Platí pro

Viz také