文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>WPF - System.Windows.Controls.ComboBox

WPF - System.Windows.Controls.ComboBox

时间:2010-09-26  来源:zip's

当 data binding 到 ComboBox 时,如何显示数据,有如下选择:

使用 DisplayMemberPath
<ComboBox Width="90" Margin="0,0,10,0"
ItemsSource
="{Binding MyList}"
DisplayMemberPath
="ID"
SelectedItem
="{Binding MySelected}"
SelectedValuePath
="ID"
/>
使用 ItemTemplate
<ComboBox Width="90" Margin="0,0,10,0"
ItemsSource
="{Binding MyList}"
SelectedItem
="{Binding MySelected}"
SelectedValuePath
="ID"
>
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding ID}"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>

其中 MyList 是一个 ObservableCollection<MyItem>:

public class MyItem
{
public int ID { get; set; }
public string Name { get; set; }
}

 

相关阅读 更多 +
排行榜 更多 +
幸存者的命运

幸存者的命运

飞行射击 下载
精英战区3d

精英战区3d

飞行射击 下载
货运猎人

货运猎人

飞行射击 下载