The ItemTemplate for my ComboBox is like this:
new FuncDataTemplate(
typeof(object),
(item, _) => new TextBlock
{
HorizontalAlignment = HorizontalAlignment.Stretch,
Text = "Hello",
})
Yet despite the horizontal alignment being set to stretch, the TextBlock doesn't fill the ComboBoxItem.