예제 #1
0
        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();
            });
        }