Terminal.Gui
1.0.0.0
Terminal.Gui.FileDialog
The Open Dialog provides an interactive dialog box for users to select files or directories.
The open dialog can be used to select files for opening, it can be configured to allow
multiple items to be selected (based on the AllowsMultipleSelection) variable and
you can control whether this should allow files or directories to be selected.
To use it, create an instance of the OpenDialog, configure its properties, and then
call Application.Run on the resulting instance. This will run the dialog modally,
and when this returns, the list of filds will be available on the FilePaths property.
To select more than one file, users can use the spacebar, or control-t.
Constructor
1.0.0.0
To be added.
To be added.
To be added.
To be added.
Property
1.0.0.0
System.Boolean
Gets or sets a value indicating whether this allows multiple selection.
true if allows multiple selection; otherwise, false, defaults to false.
To be added.
Property
1.0.0.0
System.Boolean
Gets or sets a value indicating whether this can choose directories.
true if can choose directories; otherwise, false defaults to false.
To be added.
Property
1.0.0.0
System.Boolean
Gets or sets a value indicating whether this can choose files.
true if can choose files; otherwise, false. Defaults to true
To be added.
Property
1.0.0.0
System.Collections.Generic.IReadOnlyList<System.String>
Returns the selected files, or an empty list if nothing has been selected
The file paths.
To be added.