12 2018 档案

摘要:/// <summary> /// 停下线程 /// </summary> private void MyStopTask() { new Action(() => { if (thread != null) { while (thread.ThreadState != System.Threadi 阅读全文
posted @ 2018-12-22 19:33 LuoCore 阅读(2400) 评论(0) 推荐(0) 编辑
摘要:Invalidate(); 阅读全文
posted @ 2018-12-22 18:32 LuoCore 阅读(1488) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/fish124423/archive/2012/10/16/2726543.html 在Invoke(....)之前加上1 this.components==null 2 this.IsDisposed 3 IsHandleCreated 来return 阅读全文
posted @ 2018-12-22 17:06 LuoCore 阅读(1222) 评论(0) 推荐(0) 编辑
摘要:当你在子线程中要修改主线程某个控件的值时,有不想再去定义一个线程变量时,就可以直接使用线程匿名委托来实现。 主要是方便快捷 控件.BeginInvoke(new ThreadStart(delegate () { 控件.Text = DateTime.Now.ToShortDateString(); 阅读全文
posted @ 2018-12-14 00:34 LuoCore 阅读(548) 评论(0) 推荐(0) 编辑
摘要:byte[] byteArray = System.Text.Encoding.Default.GetBytes(content); Byte[] ThisByte = new Byte[1];Buffer.BlockCopy(byteArray, 30, ThisByte, 0, 1);strin 阅读全文
posted @ 2018-12-11 22:52 LuoCore 阅读(2517) 评论(0) 推荐(0) 编辑