2

宣言でプロパティ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>
4

1 に答える 1