You can populate a Picker with items in C# code-behind using:
C#:
public MainPage()
{
InitializeComponent();
var myPicker = new Picker();
myPicker.ItemsSource = new List<string> {"Mark,Annie,Rose"};
Content = myPicker;
}
Share with