原文:WPF 实现跑马灯效果的Label控件,数据绑定方式实现 项目中需要使用数据绑定的方式实现跑马灯效果的Label,故重构了Label控件:具体代码如下 using System; using System.Timers; using System.Windows; using System.Windows.Controls; using Tool; namespace iMasteRayClient.View.ViewUnit { public class UIScrollingL
class ControlHelper { public static void ShowOnTxtLbl<T>(T control, string mess) where T : System.Windows.Forms.Control, new() { if (control.InvokeRequired) { control.BeginInvoke(new MethodInvoker(delegate { control.Text = mess; })); } else { contro