Container class for utility functions for file dialogs. More...
Static Public Member Functions | |
| static TObject | LoadByDialog< TObject > (LoadConstructor< TObject > f, System.Windows.Window owner, string title, string filter, string defaultExtension) |
| Generic file load function. | |
| static TObject | LoadByDialog< TObject > (LoadConstructor< TObject > f, System.Windows.Window owner, string title, string filter) |
| Generic file load function. | |
| static TObject | LoadByDialog< TObject > (LoadConstructor< TObject > f, string title, string filter) |
| Generic file load function. | |
| static TObject | LoadByDialog< TObject > (LoadConstructor< TObject > f, string filter) |
| Generic file load function. | |
| static TObject | LoadByDialog< TObject > (LoadConstructor< TObject > f) |
| Generic file load function. | |
| static bool | SaveByDialog< TObject > (TObject obj, SaveFunction< TObject > f, System.Windows.Window owner, string title, string filter, string defaultExtension) |
| Generic file save function. | |
| static bool | SaveByDialog< TObject > (TObject obj, SaveFunction< TObject > f, System.Windows.Window owner, string title, string filter) |
| Generic file save function. | |
| static bool | SaveByDialog< TObject > (TObject obj, SaveFunction< TObject > f, string title, string filter) |
| Generic file save function. | |
| static bool | SaveByDialog< TObject > (TObject obj, SaveFunction< TObject > f, string filter) |
| Generic file save function. | |
| static bool | SaveByDialog< TObject > (TObject obj, SaveFunction< TObject > f) |
| Generic file save function. | |
Container class for utility functions for file dialogs.
|
static |
Generic file load function.
| TObject | Type of the object to be loaded. |
| f | Load delegate. |
| TObject | : | class |
|
static |
Generic file load function.
| TObject | Type of the object to be loaded. |
| f | Load delegate. |
| filter | File type filter. |
| TObject | : | class |
|
static |
Generic file load function.
| TObject | Type of the object to be loaded. |
| f | Load delegate. |
| title | Title of the dialog. |
| filter | File type filter. |
| TObject | : | class |
|
static |
Generic file load function.
| TObject | Type of the object to be load ed. |
| f | Load delegate. |
| owner | Window that owns the modal dialog. |
| title | Title of the dialog. |
| filter | File type filter. |
| TObject | : | class |
|
static |
Generic file load function.
| TObject | Type of the object to be loaded. |
| f | Load delegate. |
| owner | Window that owns the modal dialog. |
| title | Title of the dialog. |
| filter | File type filter. |
| defaultExtension | Default extension to append to the file name if no extension was specified. |
| TObject | : | class |
|
static |
Generic file save function.
| TObject | Type of the object to be saved. |
| f | Load delegate. |
| obj | Object to be saved. |
true if the save operation succeeded, false otherwise.
|
static |
Generic file save function.
| TObject | Type of the object to be saved. |
| f | Load delegate. |
| filter | File type filter. |
| obj | Object to be saved. |
true if the save operation succeeded, false otherwise.
|
static |
Generic file save function.
| TObject | Type of the object to be saved. |
| f | Load delegate. |
| title | Title of the dialog. |
| filter | File type filter. |
| obj | Object to be saved. |
true if the save operation succeeded, false otherwise.
|
static |
Generic file save function.
| TObject | Type of the object to be saved. |
| f | Load delegate. |
| owner | Window that owns the modal dialog. |
| title | Title of the dialog. |
| filter | File type filter. |
| obj | Object to be saved. |
true if the save operation succeeded, false otherwise.
|
static |
Generic file save function.
| TObject | Type of the object to be saved. |
| f | Load delegate. |
| owner | Window that owns the modal dialog. |
| title | Title of the dialog. |
| filter | File type filter. |
| defaultExtension | Default extension to append to the file name if no extension was specified. |
| obj | Object to be saved. |
true if the save operation succeeded, false otherwise.