Is there any common event for datagridview which is fired, when rowHeaderWidth of datagridview is changed or column Width of datagridview is changed?
I have used datagridview.ColumnWidthChanged(object sender, DataGridViewColumnEventArgs e) it is invoked when column width is changed but it is not invoked when row header width of the datagridview is changed.
I have also used *dataGridView1_RowHeadersWidthChanged(object sender, EventArgs e)* it is invoked when row header width is changed but it is not invoked when column width of the datagridview is changed.
So I want a common event which is invoked in both case...