FileDialogCustomPlaces.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / Microsoft / Win32 / FileDialogCustomPlaces.cs / 1305600 / FileDialogCustomPlaces.cs

                            /**************************************************************************\ 
    Copyright Microsoft Corporation. All Rights Reserved.
\**************************************************************************/

namespace Microsoft.Win32 
{
    using System; 
 
    // Guids defined here are copied from the KnownFolders.h file, part of the Windows SDK.
    // Not all folders in that header will work for FileDialogs.  The WPF implementation limits the list to locations that have a physical backing, 
    // e.g. not ControlPanel, Computer, etc.  The real file dialogs work at a higher level of abstraction (shell namespaces instead of the file system)
    //than the WPF wrapper.
    //
    // static properties in this class are guaranteed to be thread safe. 
    // static properties in this class are not guaranteed to have reference equality when retrieved on multiple calls.
    public static class FileDialogCustomPlaces 
    { 
        // Computer is always present in the Custom Places list.
        // It's not backed by a physical location, though, so we wouldn't support it if it was specified. 
        //public static FileDialogCustomPlace Computer
        //{
        //    get { return new FileDialogCustomPlace(new Guid("0AC0837C-BBF8-452A-850D-79D08E667CA7")); }
        //} 

        /// The directory that serves as a common repository for application-specific data for the current roaming user. 
        public static FileDialogCustomPlace RoamingApplicationData 
        {
            get { return new FileDialogCustomPlace(new Guid("3EB685DB-65F9-4CF6-A03A-E3EF65729F3D")); } 
        }

        /// The directory that serves as a common repository for application-specific data that is used by the current, non-roaming user.
        public static FileDialogCustomPlace LocalApplicationData 
        {
            get { return new FileDialogCustomPlace(new Guid("F1B32785-6FBA-4FCF-9D55-7B8E7F157091")); } 
        } 

        /// The directory that serves as a common repository for Internet cookies. 
        public static FileDialogCustomPlace Cookies
        {
            get { return new FileDialogCustomPlace(new Guid("2B0F765D-C0E9-4171-908E-08A611B84FF6")); }
        } 

        /// The user's Contacts folder. 
        public static FileDialogCustomPlace Contacts 
        {
            get { return new FileDialogCustomPlace(new Guid("56784854-C6CB-462b-8169-88E350ACB882")); } 
        }

        /// The directory that serves as a common repository for the user's favorite items.
        public static FileDialogCustomPlace Favorites 
        {
            get { return new FileDialogCustomPlace(new Guid("1777F761-68AD-4D8A-87BD-30B759FA33DD")); } 
        } 

        /// The directory that contains the user's program groups. 
        public static FileDialogCustomPlace Programs
        {
            get { return new FileDialogCustomPlace(new Guid("A77F5D77-2E2B-44C3-A6A2-ABA601054A51")); }
        } 

        /// The user's Music folder. 
        public static FileDialogCustomPlace Music 
        {
            get { return new FileDialogCustomPlace(new Guid("4BD8D571-6D19-48D3-BE97-422220080E43")); } 
        }

        /// The user's Pictures folder.
        public static FileDialogCustomPlace Pictures 
        {
            get { return new FileDialogCustomPlace(new Guid("33E28130-4E1E-4676-835A-98395C3BC3BB")); } 
        } 

        /// The directory that contains the Send To menu items. 
        public static FileDialogCustomPlace SendTo
        {
            get { return new FileDialogCustomPlace(new Guid("8983036C-27C0-404B-8F08-102D10DCFD74")); }
        } 

        /// The directory that contains the Start menu items. 
        public static FileDialogCustomPlace StartMenu 
        {
            get { return new FileDialogCustomPlace(new Guid("625B53C3-AB48-4EC1-BA1F-A1EF4146FC19")); } 
        }

        /// The directory that corresponds to the user's Startup program group.
        public static FileDialogCustomPlace Startup 
        {
            get { return new FileDialogCustomPlace(new Guid("B97D20BB-F46A-4C97-BA10-5E3608430854")); } 
        } 

        /// The System directory. 
        public static FileDialogCustomPlace System
        {
            get { return new FileDialogCustomPlace(new Guid("1AC14E77-02E7-4E5D-B744-2EB1AE5198B7")); }
        } 

        /// The directory that serves as a common repository for document templates. 
        public static FileDialogCustomPlace Templates 
        {
            get { return new FileDialogCustomPlace(new Guid("A63293E8-664E-48DB-A079-DF759E0509F7")); } 
        }

        /// The directory used to physically store file objects on the desktop.
        public static FileDialogCustomPlace Desktop 
        {
            get { return new FileDialogCustomPlace(new Guid("B4BFCC3A-DB2C-424C-B029-7FE99A87C641")); } 
        } 

        /// The user's Documents folder 
        public static FileDialogCustomPlace Documents
        {
            get { return new FileDialogCustomPlace(new Guid("FDD39AD0-238F-46AF-ADB4-6C85480369C7")); }
        } 

        /// The Program files directory. 
        public static FileDialogCustomPlace ProgramFiles 
        {
            get { return new FileDialogCustomPlace(new Guid("905E63B6-C1BF-494E-B29C-65B732D3D21A")); } 
        }

        /// The directory for components that are shared across applications
        public static FileDialogCustomPlace ProgramFilesCommon 
        {
            get { return new FileDialogCustomPlace(new Guid("F7F1ED05-9F6D-47A2-AAAE-29D317C6F066")); } 
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK