mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 22:37:43 +01:00
Added doc
This commit is contained in:
parent
8285aa1014
commit
e2297661f3
1 changed files with 4 additions and 1 deletions
|
|
@ -30,6 +30,10 @@ public class FileDialogManager
|
||||||
private Action<bool, List<string>>? multiCallback;
|
private Action<bool, List<string>>? multiCallback;
|
||||||
private string savedPath = ".";
|
private string savedPath = ".";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Event fires when a new file is selected by the user
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>Returns the path of the file as a string</returns>
|
||||||
public event EventHandler<string>? SelectionChanged;
|
public event EventHandler<string>? SelectionChanged;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -208,7 +212,6 @@ public class FileDialogManager
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dialog = new FileDialog(id, title, filters, path, defaultFileName, defaultExtension, selectionCountMax, isModal, flags);
|
this.dialog = new FileDialog(id, title, filters, path, defaultFileName, defaultExtension, selectionCountMax, isModal, flags);
|
||||||
|
|
||||||
if (this.GetDefaultSortOrder is not null)
|
if (this.GetDefaultSortOrder is not null)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue