Daniel's XL Toolbox NG
|
Base class for actions that use dialogs based on System.Windows.Forms.FileDialog. More...
Protected Member Functions | |
abstract FileDialog | GetDialog (string defaultString, string filter) |
override string | GetDialogResult (string defaultString, string filter) |
Displays an dialog to choose file or folder names. More... | |
override void | Invoke (object parameter) |
abstract FileDialog | GetDialog (string defaultString, string filter) |
override string | GetDialogResult (string defaultString, string filter) |
Displays an dialog to choose file or folder names. More... | |
override void | Invoke (object parameter) |
Protected Member Functions inherited from Bovender.Mvvm.Actions.FileFolderActionBase | |
override void | Invoke (object parameter) |
override System.Windows.Window | CreateView () |
Returns a view that can bind to expected message contents. More... | |
override void | Invoke (object parameter) |
override System.Windows.Window | CreateView () |
Returns a view that can bind to expected message contents. More... | |
Protected Member Functions inherited from Bovender.Mvvm.Actions.MessageActionBase | |
override void | Invoke (object parameter) |
Creates a view that has its dependent view model injected into it. More... | |
void | Invoke< T > (T messageContent, Action respond) |
virtual void | ShowView (Window view) |
Shows the view as a modal dialog. Override this to do something else with the view. More... | |
override void | Invoke (object parameter) |
Creates a view that has its dependent view model injected into it. More... | |
void | Invoke< T > (T messageContent, Action respond) |
virtual void | ShowView (Window view) |
Shows the view as a modal dialog. Override this to do something else with the view. More... | |
Properties | |
string | Filter [get, set] |
Filter string for the file dialog. Filter entries consist of a description and an extensions, separated by a pipe symbol; multiple entries are separated by pipe symbols as well: "Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*" More... | |
Properties inherited from Bovender.Mvvm.Actions.FileFolderActionBase | |
string | Description [get, set] |
StringMessageContent | MessageContent [get] |
Properties inherited from Bovender.Mvvm.Actions.MessageActionBase | |
string | Caption [get, set] |
string | Message [get, set] |
MessageContent | Content [get, protected set] |
Base class for actions that use dialogs based on System.Windows.Forms.FileDialog.
|
protectedpure virtual |
|
protectedpure virtual |
|
inlineprotectedvirtual |
Displays an dialog to choose file or folder names.
defaultString | Indicates the default path and/or file name and/or extension. |
Implements Bovender.Mvvm.Actions.FileFolderActionBase.
|
inlineprotectedvirtual |
Displays an dialog to choose file or folder names.
defaultString | Indicates the default path and/or file name and/or extension. |
Implements Bovender.Mvvm.Actions.FileFolderActionBase.
|
inlineprotected |
|
inlineprotected |
|
getset |
Filter string for the file dialog. Filter entries consist of a description and an extensions, separated by a pipe symbol; multiple entries are separated by pipe symbols as well: "Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*"
This property will only be used to set the dialog filter if the derived class does not set the property in its implementation of the abstract GetDialog() method.