private void updateBytes() { int intValue = myColor.ToArgb32(); byte[] bytes = new byte[4]; alpha = (byte)(intValue >> 24); red = (byte)(intValue >> 16); green = (byte)(intValue >> 8); blue = (byte)intValue; }