You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Opened native file dialog provider
2. Updated dependencies
3. Added auto add extension for winapi saving dialog
4. Now wildcard always added to filters
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,9 @@ class Example
23
23
24
24
## Providers
25
25
Currently supported dialog providers:
26
-
- WinAPI
27
-
- GTK+
26
+
- WinAPI (Auto add extension on file save supported)
27
+
- GTK
28
28
29
29
## Adding your own provider
30
-
There is no way to add your own provider without recompiling library because class `NativeFileDialog` searches for providers inside library, but not outside
31
-
But if you really need to add it, just create new class in project that inherits interface `INativeDialogProvider` and add implementations
30
+
You can use custom provider by setting property 'NativeFileDialog.Provider' or bundled providers with method 'NativeFileDialog.SetDefaultProvider()'.
31
+
To create custom provider create new class, inherit interface `INativeDialogProvider` and add implementations.
0 commit comments