如何减少wpf中ComboBox下拉箭头的宽度?

发布于 2024-12-22 16:35:20 字数 108 浏览 0 评论 0原文

我有一个 wpf/mvvm 应用程序。我里面有一个组合框(下拉)。我想减少下拉箭头的宽度...

我知道我可以替换模板...但是如何构建箭头标记?

任何帮助将不胜感激!谢谢

I have a wpf/mvvm application. I have a combobox (drop down) in that. I would like to reduce the width of the drop down arrow...

I know that I can replace the template...but how do I build an arrow mark ?

Any help would be appreciated! Thanks

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

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

发布评论

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

评论(1

我也只是我 2024-12-29 16:35:20

如果您查看标准的 ComboBox 控件模板< /a>,您将看到一个 System.Windows.Shapes.Path 用于创建箭头。请参阅下面的 ComboBoxToggleButton 的部分捕获...

 <Path 
    x:Name="Arrow"
    Grid.Column="1"     
    Fill="{StaticResource GlyphBrush}"
    HorizontalAlignment="Center"
    VerticalAlignment="Center"
    Data="M 0 0 L 4 4 L 8 0 Z"/>

您必须更改 Data 属性 用于更改绘制的几何路径,以在控件模板中创建箭头。

If you take a look at the standard ComboBox control templates, you will see a System.Windows.Shapes.Path used to create the arrow. See below for partial capture of the ComboBoxToggleButton...

 <Path 
    x:Name="Arrow"
    Grid.Column="1"     
    Fill="{StaticResource GlyphBrush}"
    HorizontalAlignment="Center"
    VerticalAlignment="Center"
    Data="M 0 0 L 4 4 L 8 0 Z"/>

You would have to alter the Data attribute to change the geometric path drawn to create the arrow in the control template.

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