Reputation: 3418
According to the docs for GtkFileChooserNative
no widget can be added.
But the underlaying IFileDialog
impl. does support it, see Is there an easy way to create a C# .NET file dialog with encoding dialog box?
What is the best way to add some widget like character encoding to the IFileDialog
using Gtk, i.e. using GtkFileChooserNative
?
Upvotes: 0
Views: 96
Reputation: 2302
Its entirely private so there is no supported way of doing it. You could probably do some ugly win32 things to find and modify the window directly, patch GTK itself, or you could just make a custom file chooser dialog.
Upvotes: 1