public static void AddAboutButton(this Ribbon ribbon) { Argument.IsNotNull(() => ribbon); ribbon.AddRibbonButton(GetImageUri("/Resources/Images/about.png"), () => { var aboutService = ServiceLocator.Default.ResolveType <IAboutService>(); aboutService.ShowAboutAsync(); }); }