Interface IInteractionService
Provides methods that can be used to interact with the user.
Namespace: Algenta.Colectica.ViewModel
Assembly: Algenta.Colectica.ViewModel.dll
Syntax
public interface IInteractionService
Methods
ChooseSingleItemFromList(String, String, String[])
Prompts the user to choose an item from a list of choices.
Declaration
string ChooseSingleItemFromList(string title, string message, string[] choices)
Parameters
Type | Name | Description |
---|---|---|
System.String | title | The title of the dialog box. |
System.String | message | The message to be displayed to the user. |
System.String[] | choices | The list of choices from which the user will select. |
Returns
Type | Description |
---|---|
System.String | Returns the value chosen by the user. |