MJ
Mano J
Syncfusion Team
September 8, 2009 10:30 AM UTC
Hi Allon,
You can handle comboboxAdv's Paint event and change the arrow color as follows:
comboBoxAdv1.Paint += new PaintEventHandler(comboBoxAdv1_Paint);
void comboBoxAdv1_Paint(object sender, PaintEventArgs e)
{
Graphics grph = e.Graphics;
Point[] curvePoints = DropDownButton.GetComboDropDownBorderBounds(this.comboBoxAdv1.DropDownButton.Bounds);
e.Graphics.DrawPolygon(Pens.Blue, curvePoints);
e.Graphics.FillPolygon(Brushes.Blue, curvePoints);
}
Thanks,
Mano