StringListFieldDefinition
This definition creates a
ListBox control bound to am ObservableCollection<String> property. This definition is great for view model classes with an editable list of strings.
Properties
public String SelectedIndexPropertyName { get; set; } Sets or returns the name of a property the SelectedIndex property of the list box should be bound to. Lets your view model object be aware of the selected index.
public String SelectedItemPropertyName { get; set; } Sets or returns the name of a property the SelectedItem property of the list box should be bound to. Lets your view model object be aware of the selected item.
Controls Created:
- ListBox (ContainerControl; InputControl)