串行通信接口SCI
SCI是Serial Communication interface的简称,即串行通信接口。SCI是一个双线的异步串口,换句话说,是具有接收和发送两根信号线的异步串口,一般可以看作是UART(通用异步接收/发送装置)。F28335的SCI支持与采用NRZ(non-return-to-zero)标准格式的异步外围设…
C#中window窗体和控件
布局与事件–界面的基本问题
布局 就是拉动窗体的时候,按钮也在跟着变动。
事件 //简单的计算器
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespa…
C#实现定时器
方法一
布局 代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace…