Form inheritance help
HI guys
I have a mail form and created a class that inherits from the main form :
namespace ClientServices
{
class ControllerClass : ClientServices
{
}
}
What happens now is that the ControllerClass looks like the ClientService!
The Problem that I have is that now that I add New controls to the ControllerClass (Via the toolbox) they show but as soon as I compile the application they disappear! Even when you stop the compilation they are gone but the code is still there?
Can anyone please advice?
Thanks
|