c#
文章平均质量分 68
elrphant
这个作者很懒,什么都没留下…
展开
-
C#获取图片中的颜色
Bitmap.GetPixel Method以下是msdn中的例子private void GetPixel_Example(PaintEventArgs e){ // Create a Bitmap object from an image file. Bitmap myBitmap = new Bitmap("Grapes.jpg"); // Get原创 2012-01-15 09:21:20 · 2873 阅读 · 1 评论 -
在winform 中PictureBox放大缩小图片
首先要将PictureBox中的SizeMode设置成StretchImage然后通过更改PictureBox中的宽度和高度来实现放大和缩小的功能//newRatio是放大缩小的倍数,缩小的话就是0.5之类的// currentImgBox此为pictureboxif (txtMulitiple.Text.Length <= 0 || null == currentImgBox.I原创 2012-01-15 09:31:09 · 9172 阅读 · 1 评论 -
C#通过窗体句柄获取窗体的Caption
[System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint = "SendMessageW")] public static extern int SendMessageW2([System.Runtime.InteropServices.InAttribute()] System.IntP原创 2012-01-15 10:28:40 · 2931 阅读 · 0 评论 -
C# 单问号(?)和双问号(??)的用法
1、单问号(?) 作用:用于给变量设初化的时候,给变量(int类型)赋为null值,而不是0。 例子: public int a; //默认值为0 public int ?b; //默认值为null参考:http://msdn.microsoft.com/zh-cn/library/1t3y8s4s.aspx转载 2012-02-03 11:32:32 · 591 阅读 · 0 评论