2018年4月27日

c# 数据写入三菱PLC

摘要: public void Data_Write_Value(int[] m_write_data) { int lSize = 2; string[] AddressArray = new string[18] { "D720", "D721", "D722", "D723", "D724", "D7 阅读全文

posted @ 2018-04-27 11:32 Mr_Mo 阅读(3019) 评论(2) 推荐(0) 编辑

2018年1月15日

C# 获取每一个像素点的RGB

摘要: int x, y; x = e.X; y = e.Y; Color pixel = MyImage.GetPixel(x, y); byte R = pixel.R; byte G = pixel.G; byte B = pixel.B; pixel_R.Text = R.ToString(); p 阅读全文

posted @ 2018-01-15 13:46 Mr_Mo 阅读(871) 评论(0) 推荐(0) 编辑

2018年1月5日

C# RS232串口使用

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO.Ports;using System.Li 阅读全文

posted @ 2018-01-05 11:13 Mr_Mo 阅读(8179) 评论(0) 推荐(0) 编辑

C# 图像自动切换

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u 阅读全文

posted @ 2018-01-05 11:04 Mr_Mo 阅读(1475) 评论(0) 推荐(0) 编辑

导航