3

我们有一个 ComboBox 的样式,例如:

<Style x:Key="OurComboBox" TargetType="ComboBox">
    <!-- omitted style Properties -->
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ComboBox">
                    <Grid>
                        <ToggleButton Name="ToggleButton"
                                      Grid.Column="2"
                                      ClickMode="Press"
                                      Focusable="false"
                                      IsChecked="{Binding Path=IsDropDownOpen,
                                                          Mode=TwoWay,
                                                          RelativeSource={RelativeSource TemplatedParent}}"
                                      Style="{StaticResource ComboBoxToggleButton}" />
                        <ContentPresenter Name="ContentSite"
                                          Margin="3,3,23,3"
                                          HorizontalAlignment="Left"
                                          VerticalAlignment="Center"
                                          Content="{TemplateBinding SelectionBoxItem}"
                                          ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
                                          ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
                                          IsHitTestVisible="False" />
                        <TextBox x:Name="PART_EditableTextBox"
                                 Margin="5,3,23,1"
                                 HorizontalAlignment="Left"
                                 VerticalAlignment="Center"
                                 Background="Transparent"
                                 Focusable="False"
                                 FontFamily="Arial Narrow"
                                 FontWeight="DemiBold"
                                 Foreground="#FF404040"
                                 IsReadOnly="True"
                                 PreviewMouseDown=""
                                 Style="{x:Null}"
                                 Template="{StaticResource ComboBoxTextBox}"
                                 Text="{TemplateBinding Text}"
                                 Visibility="Hidden" />

            <!-- omitted PopUp and ControlTemplate.Triggers -->

在此基础上,我们有另一种更具体的风格

 <Style x:Key="comboBoxSpecialPage"
           BasedOn="{StaticResource OurComboBox}"
           TargetType="ComboBox">
        <Style.Triggers>
            <Trigger Property="SelectedIndex" Value="-1">
                <Setter Property="Text" Value="Select value" />
            </Trigger>
        </Style.Triggers>
    </Style>

如果在组合框中没有选择任何内容,例如在应用程序启动时,这会导致文本“选择值”。

但是当我直接单击 TextBox 文本时,什么也没有发生。

所以问题是:如何实现弹出弹出窗口的打开,就像单击组合框的其余部分(没有文本的部分)一样?

-edit- 如果我省略了有趣的部分,请告诉我,我会添加它们。

4

2 回答 2

2

也许 IsHitTestVisible 属性是您正在寻找的,更多信息在这里: 文本框标记和 IsHitTestVisible 属性

于 2013-02-18T16:21:33.023 回答
0

ComboBox 有一个名为 DropDownStyle 的属性。将此设置为 DropDownList 并且文本区域不再可编辑,即您必须从列表中进行选择。

于 2013-02-18T16:28:55.760 回答