Xamarin.Forms by Xamarin Inc.

<PackageReference Include="Xamarin.Forms" Version="1.4.0.6336-pre1" />

.NET API 682,496 bytes

 Picker

public class Picker : View
A View control for picking an element in a list.
public static readonly BindableProperty SelectedIndexProperty

Identifies the SelectedIndex bindable property.

public static readonly BindableProperty TitleProperty

Identifies the Title bindable property.

public IList<string> Items { get; }

Gets the list of choices.

public int SelectedIndex { get; set; }

Gets or sets the index of the slected item of the picker. This is a bindable property.

public string Title { get; set; }

Gets or sets the title for the Picker. This is a bindable property.

Raised when the value of the SelectIndex property has changed.

public Picker()