Dear Sir/Madam,
I’m a fresh dotnet guy ,I have a free DockingPanel tools want to using in my application,but this tools Inherits the basic windows.form will have conflict with MicroFour.StrataFrame.UI.Windows.Forms.StandardForm
Can you give me some hints or coding for me how to implement it?
Please refer to the attached project.
So if you are going to move down this path, you will need to create your own base form. Since you have the source code, just find the BaseForm in the MicroFour StrataFrame Business assembly. You will need to create your own base form (this is all that StandardForm does, it inherits from BaseForm). Copy over BaseForm and then change the inheritance to your class. I don't recommend changing BaseForm itself otherwise you will have to change it with every release, which is fine if you want to add that to your "to-do" list. But once you have it copied over to your base assembly, change the inheritance of the BaseForm from the standard .NET form to your docking form and it will get you what you are trying to do.