Skip to content

TheAirBlow/NativeFileDialog.Extended

Repository files navigation

NativeFileDialog.Extended

Simple to use C# wrapper for nativefiledialog-extended

Usage

using NativeFileDialog.Extended;

NFD.OpenDialog(".");
NFD.OpenDialog(".",
    new Dictionary<string, string> {
        ["Text File"] = "txt"
    });

NFD.OpenDialogMultiple(".");
NFD.OpenDialogMultiple(".",
    new Dictionary<string, string> {
        ["Text File"] = "txt"
    });

NFD.SaveDialog(".", "NFD.txt");
NFD.SaveDialog(".", "NFD.cs",
    new Dictionary<string, string> {
        ["Text File"] = "txt"
    });

NFD.PickFolder(".");

About

Simple to use C# wrapper for nativefiledialog-extended

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages