我有一个包含多个x:Key元素(图标列表)的ResourceDictionary。我希望将一个ComboBox ItemsSource绑定到ResourceDictionary中的键列表。
<UserControl.Resources>
<ResourceDictionary x:Name="Icons" Source="..."/>
</UserControl.Resources>
<Grid>
<ComboBox ItemSource = {Binding ?}> //How to Bind here to Icons keys?
</Grid>
我考虑将字典加载到后面的代码中,然后使用
combobox1.ItemsSource = // Load dictionary keys here
但是我想知道我是否可以直接使用XAML?
1条答案
按热度按时间juzqafwq1#
抱歉我的问题不够清楚,最后解决的办法很简单,绑定应该是这样的I-