I have fetched data from one model IncomeCatMaster and bind it to a picker iCatList.
protected async override void OnAppearing()
{
var pick = await _connection.Table().ToListAsync();
iCatList.ItemsSource = pick;
base.OnAppearing();
}
But i get model name as items in picker. How will i bind display element as InCategory from Model IncomeCatMaster in xaml.cs(ie,in codebehind).
Please Help me to find answer.
Harsh ShahPosted Jan 7, 2021, 6:40 AM
Gajendra JangidPosted Mar 12, 2019, 12:37 AM