| c# Programming Glossary: color.fromnamePlacing Images and Strings with a C# Combobox http://stackoverflow.com/questions/4080719/placing-images-and-strings-with-a-c-sharp-combobox  Graphics g Graphics.FromImage img Brush b new SolidBrush Color.FromName val g.DrawRectangle Pens.White 0 0 img.Width img.Height g.FillRectangle.. 
 Change GridView row color based on condition in C# http://stackoverflow.com/questions/5048762/change-gridview-row-color-based-on-condition-in-c-sharp  this.style.backgroundColor '#E56E94'  e.Row.BackColor Color.FromName #E56E94    else  if e.Row.RowType DataControlRowType.DataRow.. this.style.backgroundColor 'gray'  e.Row.BackColor Color.FromName gray   e.Row.Cells 0 .BackColor Color.FromName gray e.Row.Cells.. Color.FromName gray   e.Row.Cells 0 .BackColor Color.FromName gray e.Row.Cells 1 .BackColor Color.FromName gray e.Row.Cells.. 
 |