テキストボックスの幅をコンボボックスの幅に設定するのが好きなアイテムとしてテキストボックスを含むコンボボックスがあります。したがって、現時点ではテキストボックスはテキストのサイズで拡大しますが、幅がコンボボックスと同じ場合は折り返されるはずです...これは私のxamlです:
<ComboBox
Margin="51,146,238,146"
BorderThickness="0"
HorizontalAlignment="Stretch"
HorizontalContentAlignment="Stretch"
Padding="3" Height="20" IsEditable="True"
x:Name="testCombobox" SelectionChanged="testCombobox_SelectionChanged">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBox
TextWrapping="Wrap"
AcceptsReturn="True"
Padding="1,1,1,1"
Background="Yellow">
</TextBox>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>