WPF:可编辑的组合框会掉落?

发布于 2024-11-09 00:57:55 字数 119 浏览 0 评论 0原文

我正在尝试创建一个既可编辑又可下拉而不是下拉的组合框。按向上箭头键(默认为向下键)时也应打开菜单。

我尝试修改 ComboBox 的默认 ControlTemplate 但它似乎不支持 IsEditable?

Im trying to create a ComboBox thats both editable and drops up instead of down. The menu should also open when pressing the up-arrow-key (down by default).

I have tried modifying the default ControlTemplate for ComboBox but it doesn't seem to have any support for IsEditable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思慕 2024-11-16 00:57:55

默认的 ControlTemplate 不适用于 IsEditable = true 品种,但该样式包含一个触发器,可在设置 IsEditable 时更改它:

<Style.Triggers>
    <Trigger Property="IsEditable" Value="true">
        <Setter Property="BorderBrush" Value="{StaticResource TextBoxBorder}"/>
        <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"/>
        <Setter Property="IsTabStop" Value="false"/>
        <Setter Property="Padding" Value="3"/>
        <Setter Property="Template" Value="{StaticResource ComboBoxEditableTemplate}"/>
    </Trigger>
</Style.Triggers>

它将其更改为另一个 ControlTemplate< /code> 其中相关部​​分是弹出窗口:

<Popup x:Name="PART_Popup" 
       AllowsTransparency="true" 
       Grid.ColumnSpan="2" 
       IsOpen="{Binding IsDropDownOpen, RelativeSource={RelativeSource TemplatedParent}}" PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}" 
       Placement="Bottom">
...
</Popup>

我认为您应该能够将 Placement 属性更改为 Top

The default ControlTemplate is not for the IsEditable = true variety, but the style contains a trigger that changes it when IsEditable is set:

<Style.Triggers>
    <Trigger Property="IsEditable" Value="true">
        <Setter Property="BorderBrush" Value="{StaticResource TextBoxBorder}"/>
        <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"/>
        <Setter Property="IsTabStop" Value="false"/>
        <Setter Property="Padding" Value="3"/>
        <Setter Property="Template" Value="{StaticResource ComboBoxEditableTemplate}"/>
    </Trigger>
</Style.Triggers>

It changes it to another ControlTemplate where the relevant part is the popup:

<Popup x:Name="PART_Popup" 
       AllowsTransparency="true" 
       Grid.ColumnSpan="2" 
       IsOpen="{Binding IsDropDownOpen, RelativeSource={RelativeSource TemplatedParent}}" PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}" 
       Placement="Bottom">
...
</Popup>

I think you should just be able to change the Placement property to Top.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文