随笔分类 - C#
摘要:问题:系统登录后,提示消息长度不固定,但空间有限 方案:用Timer控件定时移动Label控件。父控件为Panel。 关键点:控件的Location属性,是相对于容器的位置。 private int positon_flag = 1; private void timer_Tick(object s
阅读全文
摘要:var tmp = from a in DT1.AsEnumerable() join b in DT2.AsEnumerable() on new { bm = a.Field<string>("编码"), lx = "类型" } equals new { bm = b.Field<string>
阅读全文