标题: Get 565TFT Color From Windows (Small Tool Develop By C#) [打印本页] 作者: xiaojuan 时间: 2014-9-17 22:39 标题: Get 565TFT Color From Windows (Small Tool Develop By C#) App Face
/*****Form1 Source Code ****************************************/
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;
namespace 取颜色
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private int R=255, G=255, B=255;
private int RU = 5, GU = 6, BU = 5;
private void Form1_Load(object sender, EventArgs e)
{
SetColorToButton();
}
private void button2_Click(object sender, EventArgs e)
{ }
private void hScrollBar1_ValueChanged(object sender, EventArgs e)
{
SetColorToButton();
}
private void hScrollBar2_ValueChanged(object sender, EventArgs e)
{