Skip to content

leisn/CommonFileDialogs.Wpf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CommonFileDialogs

CommonFileDialogs cropped from Windows API Code Pack 1.1, only for WPF. Fork of https://github.com/emako/CommonFileDialogs.

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. Only support .Net6.0-Widnows.

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 only for WPF

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%