Class FilePickerParameters
- Namespace
- Tudormobile.Wpf.Commands
- Assembly
- Tudormobile.WpfApp.dll
File Picker (dialog) parameters.
public class FilePickerParameters : DependencyObject
- Inheritance
-
FilePickerParameters
- Inherited Members
Fields
CommandProperty
Gets or sets the file dialog results command.
public static readonly DependencyProperty CommandProperty
Field Value
FileNameProperty
Gets or sets a string containing the file name selected in the file dialog box.
public static readonly DependencyProperty FileNameProperty
Field Value
FilterProperty
Gets or sets the current file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box.
public static readonly DependencyProperty FilterProperty
Field Value
TitleProperty
Gets or sets the file dialog box title.
public static readonly DependencyProperty TitleProperty
Field Value
Properties
Command
Gets or sets the file dialog results command.
public ICommand? Command { get; set; }
Property Value
FileName
Gets or sets a string containing the file name selected in the file dialog box.
public string FileName { get; set; }
Property Value
Filter
Gets or sets the current file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box.
public string Filter { get; set; }
Property Value
Title
Gets or sets the file dialog box title.
public string Title { get; set; }