Click here to Skip to main content
15,886,518 members
Articles / Desktop Programming / Windows Forms

Clipz - A Friendly Introduction to the Windows 7 Taskbar Features

Rate me:
Please Sign up or sign in to vote.
4.91/5 (57 votes)
17 Dec 2009CPOL9 min read 71.8K   1.6K   123  
An overview of the Windows 7 taskbar features, and how to use then in your own applications.
//Copyright (c) Microsoft Corporation.  All rights reserved.

namespace Microsoft.WindowsAPICodePack.Controls
{
    internal static class ExplorerBrowserIIDGuid
    {
        static ExplorerBrowserIIDGuid()
        {
            // Private constructor to prevent the compiler from generating the default one.
        }

        // IID GUID strings for relevant Shell COM interfaces.
        internal const string IExplorerBrowser = "DFD3B6B5-C10C-4BE9-85F6-A66969F402F6";
        internal const string IKnownFolderManager = "8BE2D872-86AA-4d47-B776-32CCA40C7018";
        internal const string IFolderView = "cde725b0-ccc9-4519-917e-325d72fab4ce";
        internal const string IFolderView2 = "1af3a467-214f-4298-908e-06b03e0b39f9";
        internal const string ICommDlgBrowser = "000214F1-0000-0000-C000-000000000046";
        internal const string IServiceProvider = "6d5140c1-7436-11ce-8034-00aa006009fa";
        internal const string IExplorerPaneVisibility = "e07010ec-bc17-44c0-97b0-46c7c95b9edc";
        internal const string IExplorerBrowserEvents = "361bbdc7-e6ee-4e13-be58-58e2240c810f";
        internal const string IInputObject = "68284fAA-6A48-11D0-8c78-00C04fd918b4";
        internal const string IShellView = "000214E3-0000-0000-C000-000000000046";
        internal const string IDispatch =  "00020400-0000-0000-C000-000000000046";
        internal const string DShellFolderViewEvents = "62112AA2-EBE4-11cf-A5FB-0020AFE7292D";
    }

    internal static class ExplorerBrowserViewPanes
    {
        static ExplorerBrowserViewPanes()
        {
            // Private constructor to prevent the compiler from generating the default one.
        }

        internal const string Navigation       = "cb316b22-25f7-42b8-8a09-540d23a43c2f";
        internal const string Commands         = "d9745868-ca5f-4a76-91cd-f5a129fbb076";
        internal const string CommandsOrganize = "72e81700-e3ec-4660-bf24-3c3b7b648806";
        internal const string CommandsView     = "21f7c32d-eeaa-439b-bb51-37b96fd6a943";
        internal const string Details          = "43abf98b-89b8-472d-b9ce-e69b8229f019";
        internal const string Preview          = "893c63d1-45c8-4d17-be19-223be71be365";
        internal const string Query            = "65bcde4f-4f07-4f27-83a7-1afca4df7ddd";
        internal const string AdvancedQuery    = "b4e9db8b-34ba-4c39-b5cc-16a1bd2c411c";
    }

    internal static class ExplorerBrowserCLSIDGuid
    {
        static ExplorerBrowserCLSIDGuid()
        {
            // Private constructor to prevent the compiler from generating the default one.
        }

        // CLSID GUID strings for relevant coclasses.
        internal const string ExplorerBrowser = "71F96385-DDD6-48D3-A0C1-AE06E8B055FB";
    }

    internal static class ExplorerBrowserViewDispatchIds
    {
        internal const int SelectionChanged = 200;
        internal const int ContentsChanged = 207;
        internal const int FileListEnumDone = 201;
        internal const int SelectedItemChanged = 220;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer PageLabs
United States United States
I'm the founder of PageLabs, a web-based performance and SEO optimization site.

Give your site a boost in performance, even take a free speed test!

http://www.pagelabs.com

Comments and Discussions