How can i insert XMAL inside other XMAL?

is this possible in wp7?

If anyone know concept help me.

thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Kind of like reusable components? A'la iframes in HTML? You might be interested in UserControls. 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 :).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.