Table of Contents

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

DependencyProperty

FileNameProperty

Gets or sets a string containing the file name selected in the file dialog box.

public static readonly DependencyProperty FileNameProperty

Field Value

DependencyProperty

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

DependencyProperty

TitleProperty

Gets or sets the file dialog box title.

public static readonly DependencyProperty TitleProperty

Field Value

DependencyProperty

Properties

Command

Gets or sets the file dialog results command.

public ICommand? Command { get; set; }

Property Value

ICommand

FileName

Gets or sets a string containing the file name selected in the file dialog box.

public string FileName { get; set; }

Property Value

string

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

string

Title

Gets or sets the file dialog box title.

public string Title { get; set; }

Property Value

string