tags:

views:

19

answers:

1

Suppose my solution have two project:

myApp: silverlight application project: the default application App

MyLib: silverlight class library project

then in code for those controls in Mylib, how to access the application object App?

+1  A: 

Application.Current should do you right, box as necessary((MyAppClass)Application.Current).something

Muad'Dib