I wish to have a set of elements have the same width, I can not simply put them in a grid as this is a content control and the elements being bound is unknown.
As a simple example, how do I bind all widths of the first child of each stack panel together along with the second element.
<StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="First column"/>
<Label Content="Second Column" Background="Green"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="One"/>
<Label Content="Two" Background="Green"/>
</StackPanel>
</StackPanel>