我试图将sql中的状态信息显示到combobox1中,并根据我们在combobox1中选择的内容,我想显示该州的城市。 wpf和实体框架 需要一些帮助 表状态: id int, name nvarchar(50)
表城: id int, name nvarchar(50), stateId int
答案 0 :(得分:0)
你必须创建包含所有状态对象的List<State> StateList
,
给
<ComboBox ItemsSource = {Binding StateList} SelectedItem = {Binding State}
DisplayMamberPath = "Name"/>`
List<State> StateList // All State