Declined
Last Updated: 13 Dec 2014 15:41 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 07 Oct 2013 06:54
Category: UI Framework
Type: Bug Report
0
FIX. Office2010Silver - CommandBarDropDownButton has incorrect arrow direction in Office2010Silver
DECLINED: not an issue

To reproduce:
-add RadCommandBar with CommandBarDropDownButton;
-change its arrow direction:
this.commandBarDropDownButton1.ArrowPart.Arrow.Direction = Telerik.WinControls.ArrowDirection.Right;    

As a result there is one arrow to the right (correct) and another arrow image to the down direction (incorrect).

Workaround:
    private void Form1_Load(object sender, EventArgs e)
{
    this.commandBarDropDownButton1.ArrowPart.Image = null;
}
1 comment
ADMIN
Todor
Posted on: 13 Dec 2014 15:18
This is not an issue, it's just that our Office 2010 themes use image for the arrow of the command bar drop down buttons. If you want to customize the arrow, you can either modify the image via the Visual Style Builder or use the following code to remove the image and show the built-in ArrowPrimitive:
            this.commandBarDropDownButton2.ArrowPart.Arrow.Direction = Telerik.WinControls.ArrowDirection.Right;
            this.commandBarDropDownButton2.ArrowPart.Arrow.ForeColor = Color.Black;
            this.commandBarDropDownButton2.ArrowPart.Image = null;