宣言でプロパティItemTemplate
を使用するなど、これを記述する短い方法はおそらくありますか? ComboBox
私は自分のコードを見て、この大きなコードのかたまりを見るのが嫌いです。
<ComboBox Grid.Row="0" Grid.Column="1" Margin="3" ItemsSource="{Binding Accounts}" SelectedItem="{Binding SelectedAccount}" >
<ComboBox.ItemTemplate>
<DataTemplate>
<ComboBoxItem Content="{Binding Name}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>