2019年1月25日

摘要: 实现效果: 知识运用: RichTextBox控件的Select方法 public void Select (int start, int length ) SelectionColor属性 public Color SelectionColor { get; set; } 实现代码: 阅读全文

posted @ 2019-01-25 23:26 努力成长静待花开 阅读(320) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: File类的Copy方法 实现代码: 阅读全文

posted @ 2019-01-25 23:08 努力成长静待花开 阅读(126) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: Graphics类的CopyFromScreen方法 //该方法用于执行颜色数据(对应于由像素组成的矩形)从屏幕到Graphics的绘图画面的为块传输 public void CopyFromScreen(int sourceX, int sourceY, int desti 阅读全文

posted @ 2019-01-25 22:56 努力成长静待花开 阅读(164) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: MouseEventArgs类的Button属性 TextBox控件的ContextMenu属性 实现代码: 阅读全文

posted @ 2019-01-25 21:49 努力成长静待花开 阅读(388) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: KeyEventArgs类的KeyData属性 public Keys KeyData {get;} //获取KeyDown或KeyUp事件的键数据 控件的Focus方法 public bool Focus() // 为控件设置输入焦点 实现代码: 阅读全文

posted @ 2019-01-25 21:34 努力成长静待花开 阅读(312) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: API函数SendMessage向窗口发送消息 private static extern bool SendMessage(IntPtr hWnd, int wMsg,int wParam,int IParam) //hWnd: 窗口句柄 wMsg: 将要发送的消息 wPa 阅读全文

posted @ 2019-01-25 10:26 努力成长静待花开 阅读(257) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: Form类的ShowInTaskbar属性 //控制程序是否显示在任务栏中 public bool ShowInTaskbar {get; set;} 实现代码: 阅读全文

posted @ 2019-01-25 01:55 努力成长静待花开 阅读(229) 评论(0) 推荐(0) 编辑

摘要: 实现效果: 知识运用: TcpListener TcpClient 和 NetworkStream类 及 Timer组件 1> TcpListener类 //用来从Tcp网络客户端侦听连接 2> TcpClient类 //为Tcp网络服务提供客户端连接 public TcpClient(string 阅读全文

posted @ 2019-01-25 01:18 努力成长静待花开 阅读(275) 评论(0) 推荐(0) 编辑