Skip to content

emako/CommonFileDialogs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CommonFileDialogs

CommonFileDialogs cropped from Windows API Code Pack 1.1.

Usage

using WindowsAPICodePack.Dialogs;

using CommonOpenFileDialog dialog = new()
{
    IsFolderPicker = true,
};

if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
{
    _ = dialog.FileName;
}

README

This is a fork of the Microsoft © Windows API Code Pack, based on a repository created by Aybe. Due to the lack of updates to the original package, this fork was created to include all open pull requests on the original repository, apply fixes and add support for all current .NET Framework and .NET Core versions.

Now with added .Net6.0 support ! (windows only)

Licence

See LICENSE for the original licence (retrieved from WebArchive). The library is not developed anymore by Microsoft and seems to have been left as 'free to use'. A clarification or update about the licence terms from Microsoft is welcome, however.

About

CommonFileDialogs cropped from Windows API Code Pack 1.1

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%