I have a ListBox with an ItemTemplate consisting of a TextBlock and a ComboBox. The problem is that the width of the text
ListBox
ItemTemplate
TextBlock
ComboBox
You can use the IsSharedSizeScope attached property. In your template definition, attach a "shared size group" to each column, like this:
... then define your ListBox as a shared size scope so it knows to size each "size group" the same way:
...