I have a Silverlight project. The XAML has been written in Expression Blend. I am told that I can use Visual Studio to use the grid classes in the Page.xaml file (the whole solution is loaded into Visual Studio) to generate the .CS (C#) files in Visual Studio 2008 that correspond to the several
When I open the Page.Xaml file and click on the name of the
public partial class Page : UserControl
{
public Page()
{
InitializeComponent();
}
}
Since each
Am I supposed to expand on this class by hand and code all the methods for this "Page" class? Is there a tutorial that shows how to do this?

Replies
Know the answer? Post it — somebody with the same question will find it here.