组合框中不显示wpf组合框的选定值

时间:2012-02-12 21:52:25

标签: wpf combobox selecteditem

当我选择下面的组合框的任何项目时,它不会显示在组合框中。组合框始终为空白,即使其项目列表已填充并允许选择其项目。

我查了一下,看起来我到目前为止所做的一切都是应该的样子,但显然有些不对劲!

<ComboBox Margin="0,61,32,0" Width="100" Height="26" HorizontalAlignment="Right" x:Name="ExportComboBox">
                    <ComboBoxItem Width="100">
                        <StackPanel Orientation="Horizontal">
                            <Image Height="24" Source="Images/Word.png" Width="24" ToolTip="Word - .doc" />
                            <TextBlock Text=" Word" />
                        </StackPanel>
                    </ComboBoxItem>
                    <ComboBoxItem Width="100">
                        <StackPanel Orientation="Horizontal">
                            <Image Height="24" Source="Images/Excel.png" Width="24" ToolTip="Excel - .xls"/>
                            <TextBlock Text=" Excel" />
                        </StackPanel>
                    </ComboBoxItem>
                    <ComboBoxItem Width="100">
                        <StackPanel Orientation="Horizontal">
                            <Image Height="24" Source="Images/Txt.png" Width="24" ToolTip="Text - .txt" />
                            <TextBlock Text=" Text File" />
                        </StackPanel>
                    </ComboBoxItem>
                </ComboBox>

非常感谢任何帮助, [R

1 个答案:

答案 0 :(得分:2)

将ComboBox的SelectedIndex属性设置为0,并在加载ComboBox时选择第一个值。

<ComboBox SelectedIndex="0" Margin="0,61,32,0" Width="100" Height="26" HorizontalAlignment="Right" x:Name="ExportComboBox">