我有选项卡的列表,其中选项卡是:
public class Tab
{
public int Id {get; set;}
public string Name {get; set}
public List<country> Country {get; set;}
}
现在,我想将其绑定到两个组合框:
第一个组合框可以,但是第二个我要显示国家/地区列表.
<custom:ComboBox Title="Tab"
ItemsSource="{Binding Tabs, Mode=TwoWay}"
ValuePath="Id"
Value="{Binding Model.Id, Mode=TwoWay}"
DisplayPath="Name"
IsEnabled="{Binding IsEnabled, Mode=TwoWay}"/>
<custom:ComboBox Title="Country"
SelectedItem="{Binding Model.Country, Mode=TwoWay}"
ItemsSource="{}"
DisplayPath="CountryName"
IsEnabled="{Binding IsEnabled, Mode=TwoWay}"/>
当我知道ID时,如何在第二个组合框中设置ItemsSource.
除了创建变量(如selectedList然后绑定到它)之外,还有另一种方法吗?
编辑
我正在创建新的对话框,并发送带有选项卡ID和对话框上下文具有选项卡列表的模型.
解决方法:
使用x:Name =“ FirstComboBox”为您的第一个ComboBox命名,并将第二个ComboBox的ItemsSource更改为ItemsSource =“ {Binding ElementName = FirstComboBox,Path = SelectedItem.Country}”.
只是一个提示:在xaml中绑定集合时,请使用ObservableCollection< T>.而不是List< T>.