¡@

Home 

c# Programming Glossary: color.blue

When is Dispose necessary?

http://stackoverflow.com/questions/1209585/when-is-dispose-necessary

g Graphics.FromImage bmp Pen p new Pen Color.FromArgb 128 Color.Blue 1 Brush b new SolidBrush Color.FromArgb 128 Color.Blue g.FillEllipse.. 128 Color.Blue 1 Brush b new SolidBrush Color.FromArgb 128 Color.Blue g.FillEllipse b 0 0 99 99 g.FillRegion b pictureBox1.Region.. bmp using Pen p new Pen Color.FromArgb 128 Color.Blue 1 using Brush b new SolidBrush Color.FromArgb 128 Color.Blue..

how to change the color of winform DataGridview header?

http://stackoverflow.com/questions/1247800/how-to-change-the-color-of-winform-datagridview-header

_dataGridView.ColumnHeadersDefaultCellStyle.BackColor Color.Blue _dataGridView.EnableHeadersVisualStyles false If you do not..

Color different parts of a RichTextBox string

http://stackoverflow.com/questions/1926264/color-different-parts-of-a-richtextbox-string

userid Color.Green box.AppendText box.AppendText message Color.Blue box.AppendText Environment.NewLine new Form Controls box .ShowDialog..

Multiple colors in a C# .NET label

http://stackoverflow.com/questions/275836/multiple-colors-in-a-c-sharp-net-label

Color.Red new SolidBrush Color.Green new SolidBrush Color.Blue new SolidBrush Color.Purple float x 0 for int i 0 i chunks.Length..

How to select text from the RichTextBox and then color it?

http://stackoverflow.com/questions/3707120/how-to-select-text-from-the-richtextbox-and-then-color-it

rtb.Select match.Index match.Length rtb.SelectionColor Color.Blue I remember there was an article on The Code Project that did..

How to change color of Image at runtime

http://stackoverflow.com/questions/383103/how-to-change-color-of-image-at-runtime

y if bmp.GetPixel x y Color.Red bmp.SetPixel x y Color.Blue pictureBox1.Image bmp Warning GetPixel and SetPixel are incredibly..

C# Can I display images in a list box?

http://stackoverflow.com/questions/472897/c-sharp-can-i-display-images-in-a-list-box

background color. e.Graphics.FillRectangle new SolidBrush Color.Blue e.Bounds else The item is NOT selected. We want a white..