.net - WinForm Inheritance designer settings are copied to derived form -
I am experiencing some troublesome behavior with Visual Studio .NET 2008. We have created a base form, and the base grid from Infrastructics Ultrigrid In the base form, we have set some properties such as color, font size, etc. 1. We create a new Windows form (i.e. DerivedForm) 2. We use the BasFment to add the statement while using the bus Changes the baseform by changing the heritage in class definition. 3. IDE at this point, you will copy Property Property.designer.cs to see DerivedForm.designer.cs to view all property settings. 4. Now if we make changes to a baseform property, then it is overridden by the current settings, which has been copied in step 3. Therefore, we do not see a new change in the form of a child. The example that is being copied comes from the baseform. InitializeControls () is similar to the following, which I found in the InitializeControls () of the derived form class: Enter the code here // // BaseForm_Fill_Panel // this.BaseForm_Fill_Panel Loca...