我使用下面的代码在代码隐藏中绑定MsComboBox的itemssource,但这不起作用。
StringBuilder sb1 = new StringBuilder();
sb1.Append(@"<DataTemplate xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'>
<ComboBox ItemsSource='{Binding ComboBoxItems, Source={StaticResource viewModel1}}' Height='30' Width='100' />
</DataTemplate>");
DataTemplate celltemplate = (DataTemplate)XamlReader.Load(sb1.ToString());
我无法从XAML中引用资源键。
任何建议如何实现这一点以及为什么ItemsSource不能为组合框绑定?
此致 斯里尼瓦桑