我为组合框提供了一些代码,我希望默认选择为“孩子”。我该怎么办?
<ComboBox Margin="10" DockPanel.Dock="Top" x:Name="categoryBox" FontSize="20">
<ComboBox.Items>
<ComboBoxItem>Kids</ComboBoxItem>
<ComboBoxItem>Films</ComboBoxItem>
<ComboBoxItem>Foods</ComboBoxItem>
</ComboBox.Items>
答案 0 :(得分:0)
只需将属性SelectedIndex设置为0。
import SwiftUI
struct GameView: View {
@Environment(\.presentationMode) var presentation
var body: some View {
Button("Done") {
self.presentation.wrappedValue.dismiss()
}
}
}