I have a user control that I have set as the Source of a Silverlight Frame. When I get the Parent of the user control in it’s constructor, it returns Null. Is there an event of UserControl that is called after the control is loaded in the frame?
Share
What about the Loaded event. If I understand your question correctly the Loaded event should be what you need to attach a handler for. That event fires after the object has been constructed, and added to the visual tree. So at that point it should have it’s parent references set correctly.