码迷,mamicode.com
首页 >  
搜索关键字:drawing    ( 1578个结果
System.Drawing.Color的颜色对照表
经常使用System.Drawing.Color, 本篇介绍一下颜色与名称及RGB值的对应关系。1. 颜色与名称的对照表(点击下图放大看):2. 颜色与RGB值对照表:Color.AliceBlue240,248,255Color.LightSalmon255,160,122Color.Antiqu...
分类:Windows程序   时间:2014-07-22 22:57:53    阅读次数:856
c# 自己制作一个简单的项目倒计时器
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
UIBezierPath,CAShaperLayer,
a、利用UIBezierPath在DrawRect:中绘制一个给定颜色的三角位图,代码如下:- (void)drawRect:(CGRect)rect{ // Drawing code UIBezierPath *path = [UIBezierPath bezierPath]; [path m.....
分类:其他好文   时间:2014-07-16 23:03:57    阅读次数:161
Asp.Net Color转换
引用命名空间usingSystem.Drawing;16进制颜色代码转Color类型:Color color =ColorTranslator.FromHtml("#F0F0F0");Color类型转16进制颜色代码:string colorWhite =ColorTranslator.ToHtml...
分类:Web程序   时间:2014-07-16 23:01:30    阅读次数:202
DataGridView实现分页
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-07-16 15:28:32    阅读次数:276
DataGridView添加另外一个控件。
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
[WinForm]ToolTip 使用小计
关键代码: using System.Drawing;using System.Windows.Forms;namespace WinFormUtilHelpV2{ /// /// 基于.NET 2.0的Tooltip工具类 /// public static class TooltipToolV2...
分类:Windows程序   时间:2014-07-14 21:38:24    阅读次数:330
C#中图片单击旋转事件
#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
Utils
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!