Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2740
Setting colour of pressed Segmented dropdown
posted

I can't seem to find the Appearance of top half of a segmented PopupMenuTool, when that tool is displaying a dropdown menu:

segmented

The top-half always displays in light blue.  

With UltraToolbarsManager1
    .Office2007UICompatibility = False
    .UseAppStyling = False
    .UseFlatMode = DefaultableBoolean.True
    .UseOsThemes = DefaultableBoolean.False
    .Style = UltraWinToolbars.ToolbarStyle.Office2013

    With .Ribbon.GroupSettings
        .Appearance.BackColor = Color.Red
        .Appearance.BackGradientStyle = GradientStyle.None
        .CollapsedAppearance.BackColor = Color.Orange
        .PressedAppearance.BackColor = Color.Yellow
        .PressedCollapsedAppearance.BackColor = Color.LightGreen
        .EditAppearance.BackColor = Color.Green
        .CaptionAppearance.BackColor = Color.LawnGreen
        .HotTrackAppearance.BackColor = Color.SeaGreen
        .HotTrackAppearance.BackColor2 = Color.Black
        .HotTrackAppearance.BackGradientStyle = GradientStyle.None
        .HotTrackCaptionAppearance.BackColor = Color.Orange
        .HotTrackCollapsedAppearance.BackColor = Color.Pink
        .HotTrackPressedAppearance.BackColor = Color.HotPink
    End With

    With .Tools("PopupMenuTool1")
        With .SharedProps
            .AppearancesLarge.PressedAppearance.BackColor = Color.Pink

        End With
    End With
End With

Can you let me know how to set this please?

Thanks.

Parents Reply Children
No Data