using System; using System.ComponentModel; using System.Drawing; using System.Timers; using System.Windows; using System.Windows.Controls; namespace Container.ChildWindows { /// /// Label走马灯自定义控件 /// [ToolboxBitmap(typeof(Label))] //设置工具箱中显示的图标 public class ScrollingTextControl : Label { /// /// 定时器 /// Timer MarqueeTimer = new Timer(); /// /// 滚动文字源 /// String _TextSource = "滚动文字源"; /// /// 输出文本 /// String _OutText = string.Empty; /// /// 过度文本存储 /// string _TempString = string.Empty; /// /// 文字的滚动速度 /// double _RunSpeed = 500; DateTime _SignTime; bool _IfFirst = true; /// /// 滚动一循环字幕停留的秒数,单位为毫秒,默认值停留3秒 /// int _StopSecond = 10000; /// /// 滚动一循环字幕停留的秒数,单位为毫秒,默认值停留3秒 /// public int StopSecond { get { return _StopSecond; } set { _StopSecond = value; } } /// /// 滚动的速度 /// [Description("文字滚动的速度")] //显示在属性设计视图中的描述 public double RunSpeed { get { return _RunSpeed; } set { _RunSpeed = value; MarqueeTimer.Interval = _RunSpeed; } } /// /// 滚动文字源 /// [Description("文字滚动的Text")] public string TextSource { get { return _TextSource; } set { _TextSource = value; _TempString = _TextSource + " "; _OutText = _TempString; } } private string SetContent { get { return Content.ToString(); } set { Content = value; } } /// /// 构造函数 /// public ScrollingTextControl() { MarqueeTimer.Interval = _RunSpeed;//文字移动的速度 MarqueeTimer.Enabled = true; //开启定时触发事件 MarqueeTimer.Elapsed += new ElapsedEventHandler(MarqueeTimer_Elapsed);//绑定定时事件 this.Loaded += new RoutedEventHandler(ScrollingTextControl_Loaded);//绑定控件Loaded事件 } void ScrollingTextControl_Loaded(object sender, RoutedEventArgs e) { _TextSource = SetContent; _TempString = _TextSource + " "; _OutText = _TempString; _SignTime = DateTime.Now; } void MarqueeTimer_Elapsed(object sender, ElapsedEventArgs e) { if (string.IsNullOrEmpty(_OutText)) return; if (_OutText.Substring(1) + _OutText[0] == _TempString) { if (_IfFirst) { _SignTime = DateTime.Now; } if ((DateTime.Now - _SignTime).TotalMilliseconds > _StopSecond) { _IfFirst = true; ; } else { _IfFirst = false; return; } } _OutText = _OutText.Substring(1) + _OutText[0]; Dispatcher.BeginInvoke(new Action(() => { SetContent = _OutText; })); } } }