Is it possible to have two controls on one page side-by-side in Silverlight? It seems very restrictive to have just one user control on just one page.
I am new to silverlight. But each page seems to have this “UserControl x:Class…” at the top of the main page XAML. So what if you want to have an app where there are two side-by-side that influences each other?
OK, it is not in the App, it is in the page.xaml. So I guess to explain further let me ask this. Is it possible to have two pages in onw app?
I am trying to have two prebuilt controls (a visi control and a vectorlight tree control) on the same page. The format of the app looks something like this:

So I want a tree view on the left side and the visi control on the right side of one app. Is this possible?
The tree view example has this user control code
<UserControl x:Class="TreeViewProgrammatic.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:liquidTreeView="clr-namespace:Liquid;assembly=Liquid.TreeView"
Width="400" Height="300">
and the other control has a user control code like this:
<UserControl x:Class="LiveUpdate.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="500" Height="340">
is there a way of having the two on one page.xaml?
I’ll have at interpretting your requirements. You have two derivatives of
UserControlcontaining in part some third party controls (actually irrelevant to the requirement) and some of your own code to make these controls do things that you want them to.Now you’d like to have them both visible to the user side by side, they interact with one another so its desirable that they run in same Silverlight app.
You’ve called both of them “Page” but then placed them in their own namespace (probably because you’ve actually created two probjects). So first step is to create a new silverlight application and put them both in this same project, lets call the project “Xarzu1”, lets also rename your
UserControlderivatives toTreeViewProgrammaticandLiveUpdateso we don’t have two controls with the useless name of “Page”.Now edit the MainPage.xaml so that it looks like this:-
Now both your controls are display side by side.