Esempio n. 1
0
        public static void AddRange(this IApplicationJumpList jumpList, IEnumerable <ApplicationJumpItemInfo> jumpItems)
        {
            if (jumpList == null)
            {
                throw new ArgumentNullException("jumpList");
            }
            List <Exception> exceptions = null;

            foreach (ApplicationJumpItemInfo jumpItem in jumpItems)
            {
                try {
                    jumpList.Add(jumpItem);
                } catch (InvalidApplicationJumpItemException e) {
                    if (exceptions == null)
                    {
                        exceptions = new List <Exception>();
                    }
                    exceptions.Add(e);
                }
            }
            if (exceptions != null)
            {
                throw new InvalidOperationException("", new AggregateException(exceptions.ToArray()));
            }
        }
Esempio n. 2
0
 public static ApplicationJumpPathInfo Add(this IApplicationJumpList jumpList, string jumpPath)
 {
     try {
         return(jumpList.Add(null, jumpPath));
     } catch (InvalidApplicationJumpItemException e) {
         throw new InvalidOperationException("", e);
     }
 }
Esempio n. 3
0
        public static ApplicationJumpPathInfo Add(this IApplicationJumpList jumpList, string customCategory, string jumpPath)
        {
            if (jumpList == null)
            {
                throw new ArgumentNullException("jumpList");
            }
            ApplicationJumpPathInfo jumpItem = new ApplicationJumpPathInfo()
            {
                Path = jumpPath, CustomCategory = customCategory
            };

            try {
                jumpList.Add(jumpItem);
            } catch (InvalidApplicationJumpItemException e) {
                throw new InvalidOperationException("", e);
            }
            return(jumpItem);
        }
Esempio n. 4
0
        public static ApplicationJumpTaskInfo AddOrReplace(this IApplicationJumpList jumpList, string customCategory, string title, ImageSource icon, string description, Action action, string commandId = null)
        {
            if (jumpList == null)
            {
                throw new ArgumentNullException("jumpList");
            }
            ApplicationJumpTaskInfo jumpItem = new ApplicationJumpTaskInfo()
            {
                CustomCategory = customCategory, Title = title, Icon = icon, Description = description, CommandId = commandId, Action = action
            };

            try {
                jumpList.AddOrReplace(jumpItem);
            } catch (ApplicationJumpTaskInvalidIconException e) {
                throw new ArgumentException("", "icon", e);
            } catch (InvalidApplicationJumpItemException e) {
                throw new InvalidOperationException("", e);
            }
            return(jumpItem);
        }
Esempio n. 5
0
 public static ApplicationJumpTaskInfo AddOrReplace(this IApplicationJumpList jumpList, string customCategory, string title, ImageSource icon, Action action, string commandId = null)
 {
     return(jumpList.AddOrReplace(customCategory, title, icon, null, action, commandId));
 }
Esempio n. 6
0
 public static ApplicationJumpTaskInfo AddOrReplace(this IApplicationJumpList jumpList, string title, ImageSource icon, string description, Action action, string commandId = null)
 {
     return(jumpList.AddOrReplace(null, title, icon, description, action, commandId));
 }