public NewBookingPage() { InitializeComponent(); //Registering picker control for Enum properties if (Device.RuntimePlatform == Device.UWP) { DataForm.RegisterEditor("TypeOfService", "DropDown"); DataForm.RegisterEditor("ServiceStatus", "DropDown"); } else { DataForm.RegisterEditor("TypeOfService", "Picker"); DataForm.RegisterEditor("ServiceStatus", "Picker"); } }
public AddTimeLogPage() { InitializeComponent(); //Registering picker control for Enum property DataForm.RegisterEditor("Status", "Picker"); }