long stdid;
string stdname;
public long studentId
{
get { return stdid; }
set { stdid = value; }
}
public string studentName
{
get { return stdname; }
set { stdname = value; }
}
how do I show my listpikcer with by default selected item "SELECT", my listpicker is binded with,
ItemsSource = "{Binding}"
I have not added items manually in listpicker, items come from class, so, how to solve it?