App is the default class name for your Application . It will be defined in your project using auto-generated code as follows.
public partial class App : Application
Indeed, both of them are the same, you get access to the static property Current , which is defined only in the Application class.
Application.Current.Resources//Accessing current through base class App.Current.Resources//Accessing current through derived class
Sriram sakthivel
source share