Click here to Skip to main content
15,881,733 members
Articles / Programming Languages / C#
Tip/Trick

Get Your Silverlight MainPage

Rate me:
Please Sign up or sign in to vote.
4.95/5 (10 votes)
9 May 2011CPOL 21.9K   3   3
Get access to your Silverlight MainPage object
If you ever need to access the MainPage object of your Silverlight application (from elsewhere in that application), simply do this where needed:

C#
MainPage mainPage = App.Current.RootVisual as MainPage;


Bonus Tip: Don't be hesitant to look at the code generated by Visual Studio. I found out wthat the RootVisual property represents the MainPage object and is set when the application is started. Once I discovered that, the rest was easy.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions

 
GeneralSweet, thanks! Pin
Julien Villers18-May-11 1:26
professionalJulien Villers18-May-11 1:26 
GeneralVery Basic but Nice help Pin
DishR11-May-11 21:02
DishR11-May-11 21:02 
GeneralCool! Pin
DrABELL10-May-11 10:35
DrABELL10-May-11 10:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.