资源简介
C#实时拾取光标颜色,可显示RGB值和16进制值
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace curColor
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
[DllImport(“gdi32.dll“)]
static public extern uint GetPixel(IntPtr hDC int XPos int YPos);
[DllImport(“gdi32.dll“)]
static public extern IntPtr CreateDC(string driverName string deviceName string output IntPtr lpinitData);
[DllImport(“gdi32.dll“)]
static public extern bool DeleteDC(IntPtr DC);
static public byte GetRValue(uint color)
{
return (byte)color;
}
static public byte GetGValue(uint color)
{
return ((byte)(((short)(color)) >> 8));
}
static public byte GetBValue(uint color)
{
return ((byte)((color) >> 16));
}
static public byte GetAValue(uint color)
{
return ((byte)((color) >> 24));
}
public Color GetColor(Point screenPoint)
{
IntPtr displayDC = CreateDC(“DISPLAY“ null null IntPtr.Zero);
uint colorref = GetPixel(displayDC screenPoint.X screenPoint.Y);
DeleteDC(displayDC);
byte Red = GetRValue(colorref);
byte Green = GetGValue(colorref);
byte Blue = GetBValue(colorref);
return Color.FromArgb(Red Green Blue);
}
private void Form1_Load(object sender EventArgs e)
{
}
private void timer1_Tick(object sender EventArgs e)
{
Point pt = new Point(Control.MousePosition.X Control.MousePosition.Y);
Color cl = GetColor(pt);
panel1.BackColor = cl;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-11-18 14:51 .vs\
目录 0 2020-11-18 14:51 .vs\curColor\
目录 0 2020-11-18 14:51 .vs\curColor\v16\
文件 46592 2020-11-18 16:25 .vs\curColor\v16\.suo
目录 0 2020-11-18 14:52 Backup\
文件 914 2019-01-20 15:19 Backup\curColor.sln
目录 0 2020-11-18 14:52 Backup\curColor\
文件 3762 2019-01-20 15:19 Backup\curColor\curColor.csproj
文件 2003 2019-01-20 15:19 Backup\curColor\Form1.cs
文件 2270 2019-01-20 15:19 Backup\curColor\Form1.Designer.cs
文件 6008 2019-01-20 15:19 Backup\curColor\Form1.resx
文件 489 2019-01-20 15:19 Backup\curColor\Program.cs
目录 0 2020-11-18 14:52 Backup\curColor\Properties\
文件 1348 2019-01-20 15:19 Backup\curColor\Properties\AssemblyInfo.cs
文件 2866 2019-01-20 15:19 Backup\curColor\Properties\Resources.Designer.cs
文件 5612 2019-01-20 15:19 Backup\curColor\Properties\Resources.resx
文件 1093 2019-01-20 15:19 Backup\curColor\Properties\Settings.Designer.cs
文件 249 2019-01-20 15:19 Backup\curColor\Properties\Settings.settings
文件 1130 2020-11-18 14:52 curColor.sln
文件 13824 2019-01-20 15:19 curColor.suo
目录 0 2020-11-18 16:25 curColor\
目录 0 2019-01-20 15:19 curColor\bin\
目录 0 2020-11-18 15:27 curColor\bin\Debug\
文件 10752 2020-11-18 15:27 curColor\bin\Debug\curColor.exe
文件 26112 2020-11-18 15:27 curColor\bin\Debug\curColor.pdb
文件 14328 2019-01-20 15:19 curColor\bin\Debug\curColor.vshost.exe
文件 490 2019-01-20 15:19 curColor\bin\Debug\curColor.vshost.exe.manifest
文件 3955 2020-11-18 14:52 curColor\curColor.csproj
文件 5344 2020-11-18 16:25 curColor\Form1.cs
文件 4955 2020-11-18 16:25 curColor\Form1.Designer.cs
文件 6008 2020-11-18 15:27 curColor\Form1.resx
............此处省略21个文件信息
相关资源
- C# 实现 信捷PLC通讯协议
- C# 敏感词过滤
- C# 單例模式
-
C# 开发BHO(Browser Helper ob
ject)插件 - C# 报表源码
- C#语言定义
- optical-reader(OID)
- C# 操作MySQL数据库(增、删、改、查)
- C# SHAP7与西门子PLC通讯及模拟
- asp.net 简单新闻发布系统源码(附数据
- C# 创建doc文档(基于Microsoft.Office.In
- c# 生成doc文档(附自定义表格)
- C# 通过S7.NET方式实现与西门子PLC通信
- C#向量类定义及应用
- c# + sqlite demo(增删改查)
- RDLC报表使用
- C#调用托管C++的dll
- bartender二次开发
- C# SIP
- C#实现调色板
- c#人机猜拳小游戏(石头、剪刀、布)
- c#简单的本地登录
- C# 8 Code sample:Using declarations(ef-cor
- 精易C#模块
- C# 图片亮度对比度,自动纠偏
- 交大C# 24道题
- C#按照拼音模糊搜索
- 酒店电子管理系统winform源代码(附数
- C# 电影点票系统源码
- C# 随机取数并计算(CPK)
评论
共有 条评论