摘要:
Code Converter C# to VB and VB to C# CodeTranslator: Code Translation From VB.NET <-> C# <-> TypeScript <-> Java 阅读全文
posted @ 2018-11-15 22:07
Kyle0418
阅读(128)
评论(0)
推荐(0)
摘要:
1.Control.Invoke Invoke 会导致线程的阻塞,但是是顺序执行的, 2.Control.BeginInvoke BeginInvoke 同样会导致线程的阻塞,在执行完主线程(UI线程)后才会执行, 若想要在线程执行结束之前执行 BeginInvoke,可以使用 EndInvoke, 阅读全文
posted @ 2018-11-15 15:03
Kyle0418
阅读(226)
评论(1)
推荐(0)
摘要:
1.System.Windows.Forms.Timer 直接从 Toolbox 中拖拽 Timer 控件到 Form 上,设置其属性及 Tick 事件, System.Windows.Forms.Timer 中的频率不准确,且和 UI 处于同一线程,易造成假死,但较为方便。 2.System.Ti 阅读全文
posted @ 2018-11-15 13:22
Kyle0418
阅读(236)
评论(0)
推荐(0)
摘要:
Result: Pen的属性主要有: Color(颜色),DashCap(短划线终点形状),DashStyle(虚线样式),EndCap(线尾形状), StartCap(线头形状),Width(粗细)等。 Result: 下面简单实现一下Brush的使用, Result: 下面实现对坐标轴的变换,默 阅读全文
posted @ 2018-11-15 10:50
Kyle0418
阅读(635)
评论(0)
推荐(0)