How can i insert XMAL inside other XMAL?
is this possible in wp7?
If anyone know concept help me.
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Kind of like reusable components? A’la iframes in
HTML? You might be interested inUserControls. Here’s an excellent tutorial about.So first you create a new usercontrol eg.
"MyUserControl.xaml"(File -> New item -> User Control) and add some components to it. Later on you can add a reference to it in another XAML file and use it simply:<MyProject:MyUserControl x:Name="something" />It’s all explained in the tutorial I linked :).