I am doing following to add expander to my combobox -
GroupStyle groupStyle = new GroupStyle();
Style style = new Style(typeof(GroupItem));
ControlTemplate controlTemplate = new ControlTemplate(typeof(GroupItem));
FrameworkElementFactory expanderFactory = new FrameworkElementFactory(typeof(Expander));
FrameworkElementFactory dockPanelFactory = new FrameworkElementFactory(typeof(DockPanel));
FrameworkElementFactory textBlockNameFactory = new FrameworkElementFactory(typeof(TextBlock));
textBlockNameFactory.SetBinding(TextBlock.TextProperty, new Binding("Name"));
textBlockNameFactory.SetValue(TextBlock.FontWeightProperty, FontWeights.Bold);
dockPanelFactory.AppendChild(textBlockNameFactory);
expanderFactory.SetValue(Expander.HeaderProperty, dockPanelFactory);
expanderFactory.SetValue(Expander.IsExpandedProperty, true);
expanderFactory.AppendChild(new FrameworkElementFactory(typeof(ItemsPresenter)));
controlTemplate.VisualTree = expanderFactory;
style.Setters.Add(new Setter(GroupItem.MarginProperty, new Thickness(0, 0, 0, 5)));
style.Setters.Add(new Setter(GroupItem.TemplateProperty, controlTemplate));
groupStyle.ContainerStyle = style;
this.comboBox.GroupStyle.Add(groupStyle);
Problem: At runtime in combobox, the expander's header text is coming as "System.Windows.FrameworkElementFactory" instead of values.
I found same questions at many sites but no answer.
Any kind of help is appreciated. Thanks.