Tanoda
|
Represents a platform-specific file browser. More...
Static Public Member Functions | |
static IList< ItemWithStream > | OpenFilePanel (string title, string directory, string extension, bool multiselect) |
Native open file dialog More... | |
static IList< ItemWithStream > | OpenFilePanel (string title, string directory, ExtensionFilter[] extensions, bool multiselect) |
Native open file dialog More... | |
static void | OpenFilePanelAsync (string title, string directory, string extension, bool multiselect, Action< IList< ItemWithStream > > cb) |
Native open file dialog async More... | |
static void | OpenFilePanelAsync (string title, string directory, ExtensionFilter[] extensions, bool multiselect, Action< IList< ItemWithStream > > cb) |
Native open file dialog async More... | |
static IList< ItemWithStream > | OpenFolderPanel (string title, string directory, bool multiselect) |
Native open folder dialog More... | |
static void | OpenFolderPanelAsync (string title, string directory, bool multiselect, Action< IList< ItemWithStream > > cb) |
Native open folder dialog async More... | |
static ItemWithStream | SaveFilePanel (string title, string directory, string defaultName, string extension) |
Native save file dialog More... | |
static ItemWithStream | SaveFilePanel (string title, string directory, string defaultName, ExtensionFilter[] extensions) |
Native save file dialog More... | |
static void | SaveFilePanelAsync (string title, string directory, string defaultName, string extension, Action< ItemWithStream > cb) |
Native save file dialog async More... | |
static void | SaveFilePanelAsync (string title, string directory, string defaultName, ExtensionFilter[] extensions, Action< ItemWithStream > cb) |
Native save file dialog async More... | |
Represents a platform-specific file browser.
Definition at line 7 of file StandaloneFileBrowser.cs.
|
static |
Native open file dialog
title | Dialog title |
directory | Root directory |
extensions | List of extension filters. Filter Example: new ExtensionFilter("Image Files", "jpg", "png") |
multiselect | Allow multiple file selection |
Definition at line 71 of file StandaloneFileBrowser.cs.
|
static |
Native open file dialog
title | Dialog title |
directory | Root directory |
extension | Allowed extension |
multiselect | Allow multiple file selection |
Definition at line 56 of file StandaloneFileBrowser.cs.
|
static |
Native open file dialog async
title | Dialog title |
directory | Root directory |
extensions | List of extension filters. Filter Example: new ExtensionFilter("Image Files", "jpg", "png") |
multiselect | Allow multiple file selection |
cb | Callback") |
Definition at line 100 of file StandaloneFileBrowser.cs.
|
static |
Native open file dialog async
title | Dialog title |
directory | Root directory |
extension | Allowed extension |
multiselect | Allow multiple file selection |
cb | Callback") |
Definition at line 85 of file StandaloneFileBrowser.cs.
|
static |
Native open folder dialog
title | |
directory | Root directory |
multiselect |
Definition at line 113 of file StandaloneFileBrowser.cs.
|
static |
Native open folder dialog async
title | |
directory | Root directory |
multiselect | |
cb | Callback") |
Definition at line 125 of file StandaloneFileBrowser.cs.
|
static |
Native save file dialog
title | Dialog title |
directory | Root directory |
defaultName | Default file name |
extensions | List of extension filters. Filter Example: new ExtensionFilter("Image Files", "jpg", "png") |
Definition at line 153 of file StandaloneFileBrowser.cs.
|
static |
Native save file dialog
title | Dialog title |
directory | Root directory |
defaultName | Default file name |
extension | File extension |
Definition at line 139 of file StandaloneFileBrowser.cs.
|
static |
Native save file dialog async
title | Dialog title |
directory | Root directory |
defaultName | Default file name |
extensions | List of extension filters. Filter Example: new ExtensionFilter("Image Files", "jpg", "png") |
cb | Callback") |
Definition at line 182 of file StandaloneFileBrowser.cs.
|
static |
Native save file dialog async
title | Dialog title |
directory | Root directory |
defaultName | Default file name |
extension | File extension |
cb | Callback") |
Definition at line 167 of file StandaloneFileBrowser.cs.