В файле .Designer у меня есть DataGridViewCellStyle
:
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStylePhoto = new System.Windows.Forms.DataGridViewCellStyle();
this.photoDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStylePhoto;
Всякий раз, когда я изменяю что-то, вообще не связанное с этим, в визуальном редакторе, он настаивает на переименовании так:
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.photoDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1;
Почему?Как я могу предотвратить это?