how to create Multiple user control that pointing single code behind file in silverlight 4
I am creating a application, in which i have 2 user control, is it possible that, we have 2 xaml user control page and having 1 code behind xaml.cs file? AnthonyWJones Start off by creating three files, first the "code-behind" .cs file is created as a simple class:- public class MyCommonUserControl : UserControl { } Note it has no InitializeComponent call. Now create a new UserControl then modify its xaml to look like this:- <local:MyCommonUserControl x:Class="YourApp.FirstMyCommonUserControl " xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft