在我们编程的时候,有时需要动态的获取当前窗体控件的Text,但是又不能一个一个控件的设置,这个时候可以通过反射来动态设置. 第一步:先建立一个类来保存控件的Text信息. public class ControlInfo { private string name; private string text; public string Name { get { return name; } set { name = value; } } public string Text { get { re
原文: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