如何为组合框设置默认值?

时间:2019-11-01 10:52:16

标签: c# wpf xaml

我为组合框提供了一些代码,我希望默认选择为“孩子”。我该怎么办?

<ComboBox Margin="10" DockPanel.Dock="Top" x:Name="categoryBox" FontSize="20">
                <ComboBox.Items>
                    <ComboBoxItem>Kids</ComboBoxItem>
                    <ComboBoxItem>Films</ComboBoxItem>
                    <ComboBoxItem>Foods</ComboBoxItem>
                </ComboBox.Items>

1 个答案:

答案 0 :(得分:0)

只需将属性SelectedIndex设置为0。

import SwiftUI

struct GameView: View {

    @Environment(\.presentationMode) var presentation

    var body: some View {
        Button("Done") {
            self.presentation.wrappedValue.dismiss()
        }
    }
}