-
When using SaveFileDialog, I want to implement a dialog of my own to give the user few choices. In my case, I want to let the user "resume". Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you want your own file dialog, you can implement this interface ISystemDialogImpl and setup it as here https://github.com/AvaloniaUI/Avalonia/blob/master/src/Avalonia.Dialogs/ManagedFileDialogExtensions.cs#L68 Or you can completely ignore Avalonia side and use your own implementation directly. |
Beta Was this translation helpful? Give feedback.
If you want your own file dialog, you can implement this interface ISystemDialogImpl and setup it as here https://github.com/AvaloniaUI/Avalonia/blob/master/src/Avalonia.Dialogs/ManagedFileDialogExtensions.cs#L68
Or you can completely ignore Avalonia side and use your own implementation directly.