How to generate Designer form again
C#
1
Posts
1
Posters
0
Views
1
Watching
-
In my windows based application I have a common User Control called “IItvCMenu” and I have 63 other user Controls that are inherited from the above. Like; public partial class UWeather : IItvCMenu { } Before I had a Picture Control in IItvCMenu user control and later I want to remove. But I removed it from IItvCMenu and but now I have 63 error in other user control’s.designer.cs class. ((System.ComponentModel.ISupportInitialize)(this.mailbox)).BeginInit(); Error comes now in each designer form,.. mailbox is my picture control’s name. I can’t delete it from Design view in inherited user controls. How can I erase this issue?