C#
lwtlboo
这个作者很懒,什么都没留下…
展开
-
C# socket服务端判断 客户端已经断开连接的一个小办法
具体原理就是: If the remote host shuts down the Socket connection with the Shutdown method, and all available data has been received, the Receive method will complete immediately and return zero bytes. 中文翻原创 2017-02-23 21:03:34 · 16819 阅读 · 0 评论 -
label填充进tablelayoutpanel会有一个白边的解决办法
实际上这个白边是label的边框? 当然了,只有label的backcolor不透明的时候才能看到 这时候,把label的margin属性的All,从-1修改为0就好啦~原创 2017-02-23 21:49:23 · 2684 阅读 · 0 评论 -
C# 控件双缓冲(转)
手头正在做一个通讯网关,选用了C#的WINFORM作界面 用了一个ListView来实时的显示数据传输情况,于是问题就来了,当数据量比较大,而且处理速度很快时,这该死的界面闪得人眼花… 废话不多说,直接上代码:首先,自定义一个类ListViewNF,继承自 System.Windows.Forms.ListView (NF=Never/No Flickering)class ListViewN转载 2017-03-03 14:06:03 · 2433 阅读 · 0 评论