Ejemplo n.º 1
0
        public static void RefreshJumpList(IEnumerable<ClientProfile> profiles)
        {
            if (m_target == null)
            {
                if (TaskbarManager.IsPlatformSupported)
                {
                    m_target = new Windows7JumpListPlatformManager();
                }
                else
                {
                    m_target = new UnsupportedJumpListPlatformManager();
                }
            }

            m_target.RebindProfiles(profiles);
        }
Ejemplo n.º 2
0
        public static void RefreshJumpList(IEnumerable <ClientProfile> profiles)
        {
            if (m_target == null)
            {
                if (TaskbarManager.IsPlatformSupported)
                {
                    m_target = new Windows7JumpListPlatformManager();
                }
                else
                {
                    m_target = new UnsupportedJumpListPlatformManager();
                }
            }

            m_target.RebindProfiles(profiles);
        }