You need to create an instance of the new MyProject.Modules.Masters.
MyProject.Modules.Masters myMasters = new MyProject.Modules.Masters() panel1.Controls.Add(myMasters);
This will add a new control to panel 1. If you also want to clear everything from the panel before adding the control, as you said in the question, first call this:
panel1.Controls.Clear();
Fur dworetzky
source share