I really searched for a long time to get the clue how to add an instance of a custom UserControl Object, that I created to the Silverlight “stage”, but I didn’t find anything.
Is there anything in Silverlight with C# like “Stage.addChild(myAweseomeObject);” in Flash?
From Jesse Liberty’s page on Creating Controls in Code:
You’d do the same thing with your own user control. Just replace “new Button()” with the name of your user control, e.g. “new MyUserControl()”.
So a simplified version may be something like this: