/NativeFileDialog.Extended

Simple to use C# wrapper for nativefiledialog-extended

Primary LanguageC#Mozilla Public License 2.0MPL-2.0

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(".");