腦中閃過的是...
要捐給慈濟嗎.....................
private void DrawItem(object sender, DrawItemEventArgs e)
{
ComboBox cBox = (ComboBox)sender;
e.DrawBackground();
if (e.Index == 0)
e.Graphics.DrawString(cBox.Items[e.Index].ToString(), cBox.Font, new SolidBrush(Color.Red), (Rectangle)e.Bounds);
else
e.Graphics.DrawString(cBox.Items[e.Index].ToString(), cBox.Font, new SolidBrush(Color.Black), (Rectangle)e.Bounds);
e.DrawFocusRectangle();
}