我想以编程方式为ItemTemplate
创建ComboBox
(就像主题所说)。
目前我在XAML中有一个ItemTemplate
:
<Style x:Key="ComboBox_EntityCreation_GroupSelect_Style" TargetType="{x:Type ComboBox}">
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1} Mitglied(er)">
<Binding Path="Name"/>
<Binding Path="MemberCount"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
由于我对XAML的仇恨,我想在不使用XAML的情况下获得结果。
是否可以这样做?
答案 0 :(得分:3)
我刚刚转换了这个。请检查它是否有效。
Style style = new Style(typeof(ComboBox));
var d = new DataTemplate();
MultiBinding mb = new MultiBinding();
mb.StringFormat = "{0} {1} Mitglied(er)";
mb.Bindings.Add(new Binding("Name"));
mb.Bindings.Add(new Binding("MemberCount"));
FrameworkElementFactory textElement = new FrameworkElementFactory(typeof(TextBlock));
textElement.SetBinding(TextBlock.TextProperty, mb);
d.VisualTree = textElement;
style.Setters.Add(new Setter(ComboBox.ItemTemplateProperty, d));
this.Resources.Add("ComboBox_EntityCreation_GroupSelect_Style", style);
您可以使用FrameworkElementFactory将DataTemplate分配给其VisualTree。
答案 1 :(得分:1)
通过代码生成模板是通过工厂完成的(即FrameworkElementFactory)。您可以通过FrameworkElement类型生成工厂,并通过工厂中的方法设置绑定等。
在msdn:http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/f230804d-fc0f-4321-a61e-69a2c890b28d/
上给出了类似的问题和一个简单的例子