In this application i have created for retrieve an entire page into other page. This application used for we can retrieve more than one pages into a single page. This used for creating a website in Silverlight. The following page treated as default header of this application. like
when u clicking the image button the page will b redirected to the next page.
when u click the next button, the page looks like,
when u click the next button, the page looks like,
using this code for retrieving the particular page.
page2 p2 = new page2();
Page p = new Page();
MainPlaceHolder.Children.Add(p);
MainPlaceHolder.Children.Add(p2);
and click events are
private void g3bb_Click(object sender, RoutedEventArgs e)
{
App.Navigate(new page2());
}
You can also download the source code
Mouse events in silverlight with animation
In this blog I have created simple application for mouse events in Silverlight and C# as business logic.
This application shows that, there are 3 grid in single page. Grid 1 is used as background(light blue) like title of the page(till now), I used grid 2 as a side bar of the page with brown color & it have 2 button, then grid 3(green) used as a content space of this page. like below
When compile the application the above screen shot to be appeared.. then click the home button mono4mano textblock to be appeared.
when mouse over the login button the following fields are display with animation like login button to be expanded..
.
And you can also download this application..