リストから特定のクラス項目を選択するにはどうすればよいですか?私はラベルに名前だけをバインドしたい。リストから特定のクラス項目を選択する方法は?
mycountry.cs
public class mycountry{
private string Id;
private string name;
private string capital;
private string majorcity;
public string ID { get{return Id;} set{Id = value;}}
public string Name { get{return name;} set{name = value;}}
public string Capital { get{return capital;} set{capital = value;}}
public string Majorcity { get{return majorcity;} set{majorcity = value;}}
}
mycountrypage.xaml.cs
List<mycountry> c;
c = DB.GetCountry();
ListView list = new ListView{
ItemsSource = c,
ItemTemplate = new DataTemplate(() =>{
Label name = new Label(); name.SetBinding(Label.TextProperty, c.?)}
}
のために既存のTextCellタイプを使用します。今すぐ名前を選択できます。 – batman