C#でComboBoxの値に応じてレイアウトを変更したい
C#(Visual studio2015)でComboBoxの値に応じてレイアウトを変更したいです。
xamlファイル
<ComboBox Grid.Row="1" Grid.Column="1"
ItemsSource="{Binding TypeCollection}"
DisplayMemberPath="Text"
Width="140" HorizontalAlignment="Left" />
<TextBlock Grid.Row="2" Text="test A!" HorizontalAlignment="Right" VerticalAlignment="Center"/>★1
<TextBlock Grid.Row="3" Text="test B!" HorizontalAlignment="Right" VerticalAlignment="Center"/>★2
TypeCollectionにはAとBが選択できるようになっているのですが、
Aを選んだ時に★1、Bを選んだ時に★2のテキストを表示させたいです。
xamlでそのような条件わけができるのでしょうか?
それともCSファイル側で行うべきなのでしょうか?