Trigger Xamarin.Forms Picker

xamarin.forms

Solution

You can name the picker (e.g. myPicker) and call its Focus event. Do make sure that you're on the main thread at the time you're calling myPicker.Focus()

Problem

Can i Trigger a Picker programatically? I would like a button beside the picker that indicates that the picker is a clickable "dropdown". But how could I open the picker when the button is clicked?

Original source