I\'m new to Xamarin and I\'m currently doing a project in Xamarin Forms PCL.
Is there a way to change the font colour and size of Picker?
Put the Label
and Picker
in the same Grid cell
.Don't set Title
of the picker
instead the Text
of the Label
will work as Title
.
Now make the Text
of Label Invisible
when an Item
is selected
from Picker
.
void Picker_SelectedIndexChanged(object sender, System.EventArgs e)
{
PickerLabel.IsVisible = false;
}