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; }
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;