Is there any way to remove or hide winform\'s datagrid gray area when data is not avaiable?
Second this how to remove/hide the default gray column?
Just set the Background-Color and the RowHeadersVisible-State of your DataGridView:
dataGridView1.BackgroundColor = Color.White; dataGridView1.RowHeadersVisible = false;