经常使用System.Drawing.Color, 本篇介绍一下颜色与名称及RGB值的对应关系。1. 颜色与名称的对照表(点击下图放大看):2. 颜色与RGB值对照表:Color.AliceBlue240,248,255Color.LightSalmon255,160,122Color.Antiqu...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
分类:
其他好文 时间:
2014-07-17 19:00:10
阅读次数:
183
前几天做了一个让图片旋转任意角度的功能,今天跟大家分享一下。。1、首先把力图片加载进来。//strPagePath为图片的路径 System.Drawing.Image ImgPointer = null; if (File.Exists(strPagePath...
分类:
其他好文 时间:
2014-07-16 23:05:35
阅读次数:
151
a、利用UIBezierPath在DrawRect:中绘制一个给定颜色的三角位图,代码如下:- (void)drawRect:(CGRect)rect{ // Drawing code UIBezierPath *path = [UIBezierPath bezierPath]; [path m.....
分类:
其他好文 时间:
2014-07-16 23:03:57
阅读次数:
161
引用命名空间usingSystem.Drawing;16进制颜色代码转Color类型:Color color =ColorTranslator.FromHtml("#F0F0F0");Color类型转16进制颜色代码:string colorWhite =ColorTranslator.ToHtml...
分类:
Web程序 时间:
2014-07-16 23:01:30
阅读次数:
202
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;u...
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Data; 6 using System....
分类:
Windows程序 时间:
2014-07-15 08:14:47
阅读次数:
1401
关键代码: using System.Drawing;using System.Windows.Forms;namespace WinFormUtilHelpV2{ /// /// 基于.NET 2.0的Tooltip工具类 /// public static class TooltipToolV2...
#region 图片单击旋转事件 private void pb_Heads_Click(object sender, EventArgs e) { System.Drawing.Image myImage = pb_Heads.Image; myImage.RotateFlip(RotateFli...
分类:
其他好文 时间:
2014-07-14 00:55:25
阅读次数:
204
using System;using System.Drawing;using System.Windows.Forms;namespace zhbCapture{ /// /// Description of Utils. /// public class Utils { public st...
分类:
其他好文 时间:
2014-07-13 09:43:24
阅读次数:
193