Devexpress将RibbonPageGroup标题加粗

本文关键字:标题 RibbonPageGroup Devexpress | 更新日期: 2023-09-27 18:25:53

我有这样一个功能区页面组:

<dxr:RibbonPageGroup Name="newReports" Caption="New Reports">

我希望标题看起来醒目。我该怎么做?我在网上搜索了一下,但什么也找不到。

Devexpress将RibbonPageGroup标题加粗

尝试设置RibbonControl.GroupCaptionTextStyle.

来自devexpress文档:

备注

要应用样式以自定义方式绘制标题,请使用RibbonControl.GroupCaptionTextStyle.

示例:(取自devexpress支持中心)

<dxr:RibbonPageGroup Name="newReports" Caption="New Reports">
    <dxr:RibbonControl.GroupCaptionTextStyle>
        <Style TargetType="{x:Type ContentControl}">
            <Setter Property="FontWeight" Value="Bold"/>
        </Style>
    </dxr:RibbonControl.GroupCaptionTextStyle>
</dxr:RibbonPageGroup>