Interface IChooserCommand<T>
Helper to create a command from IFilePicker or IFolderPicker
Namespace: Neutronium.BuildingBlocks.ApplicationTools
Assembly: Neutronium.BuildingBlocks.ApplicationTools.dll
Syntax
public interface IChooserCommand<out T>
where T : IIODialog
Type Parameters
Name | Description |
---|---|
T |
Properties
| Improve this Doc View SourceCanBeExecuted
CanBeExecuted
Declaration
bool CanBeExecuted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Choose
Picker exposed as command.
Declaration
ICommandWithoutParameter Choose { get; }
Property Value
Type | Description |
---|---|
Neutronium.MVVMComponents.ICommandWithoutParameter |
Picker
File or Folder picker instance
Declaration
T Picker { get; }
Property Value
Type | Description |
---|---|
T |
Results
Results as observable
Declaration
IObservable<string> Results { get; }
Property Value
Type | Description |
---|---|
System.IObservable<System.String> |