单击ComboBox的TextBox部分

时间:2013-02-18 09:24:43

标签: c# wpf xaml combobox textbox

我们有一个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>

如果在ComboBox中未选择任何内容,则会导致文本“选择值”,例如在申请开始时。

但是当我直接点击TextBox文本时,没有任何反应。

所以问题是: 如何实现PopUp的打开,就像其他人一样 单击ComboBox(没有文本的部分)?

CNC中 如果我省略了有趣的部分,请告诉我,然后我会添加它们。

2 个答案:

答案 0 :(得分:2)

也许IsHitTestVisible属性是您正在寻找的,更多信息在这里: Textbox tag and IsHitTestVisible property

答案 1 :(得分:0)

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