How to create a user control that includes a dataform in Silverlight 4?
I created a custom UserControl named EditUserInfo, that includes a DataForm control. In the UserControl I created a Dependency Property of type UserInformation class named CurrentItem. The MainPage contains this user control, and in it's Loaded event I set UserControl's CurrentItem property to a newly created UserInformation object. Th...