目录
1.涉及到的知识点
(1)Timer组件
(2)Label控件的Left属性
(3)启动和关闭Timer计时器
2. 实例
(1)Resources.Designer.cs设计
(2) Form1.Designer.cs设计
(3)Form1.cs设计
(4) 生成效果
普通窗体中的文字位置都是固定的,但在一些窗体中需要让文字动起来,如一些广告性较强的界面中需要做一些滚动的字幕。
1.涉及到的知识点
本实例主要是通过Timer组件控制Label控件的移动来实现的,而Label控件的移动主要是通过设置其与窗体左边距的相对位置来实现的。
(1)Timer组件
Timer计时器可以按用户定义的时间间隔来引发事件,引发的事件一般为周期性的,每隔若干秒或若干毫秒执行一次,其Interval属性用来获取或设置在相对于上一次发生的Tick事件引发Tick事件之前的时间(以毫秒为单位)。Interval属性的语法格式如下:
public int Interval {get;set;}
参数说明
属性值:指定在相对于上一次发生的Tick事件引发Tick事件之前的毫秒数,该值不能小于1。
Timer组件的Enabled属性用来获取或设置计时器是否正在运行。语法格式如下:
public virtual bool Enabled {get;set;}
参数说明
属性值:如果计时器当前处于启用状态,则为true;否则为false。默认为false。
(2)Label控件的Left属性
该属性用来获取或设置控件左边缘与其容器的工作区左边缘之间的距离(以像素为单位)。语法格式如下:
[BrowsableAttribute(false)]
public int Left{get;set;}
参数说明
属性值:表示控件左边缘与其容器的工作区左边缘之间的距离(以像素为单位)。
Left属性的值等效于Label控件的Location属性值的Point.X属性。
(3)启动和关闭Timer计时器
启动Timer计时器时,可以将其Enabled属性设置为true,或者调用其Start方法;
而关闭Timer计时器时,则需要将其Enabled属性设置为false,或者调用其Stop方法。
2. 实例
本实例实现了一个具有滚动字幕效果的窗体,运行本实例,单击“演示”按钮,将看到窗口中的文字开始滚动;单击“暂停”按钮,可以使字幕停止滚动。
(1)Resources.Designer.cs设计
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace _188.Properties {
using System;
/// <summary>
/// 一个强类型的资源类,用于查找本地化的字符串等。
/// </summary>
// 此类是由 StronglyTypedResourceBuilder
// 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
// 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
// (以 /str 作为命令选项),或重新生成 VS 项目。
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// 返回此类使用的缓存的 ResourceManager 实例。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("_188.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// 重写当前线程的 CurrentUICulture 属性,对
/// 使用此强类型资源类的所有资源查找执行重写。
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// 查找 System.Drawing.Bitmap 类型的本地化资源。
/// </summary>
internal static System.Drawing.Bitmap _05 {
get {
object obj = ResourceManager.GetObject("_05", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}
(2) Form1.Designer.cs设计
namespace _188
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
button1 = new Button();
button2 = new Button();
button3 = new Button();
timer1 = new System.Windows.Forms.Timer(components);
label1 = new Label();
SuspendLayout();
//
// button1
//
button1.Location = new Point(267, 73);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 0;
button1.Text = "演示";
button1.UseVisualStyleBackColor = true;
button1.Click += Button1_Click;
//
// button2
//
button2.Location = new Point(267, 102);
button2.Name = "button2";
button2.Size = new Size(75, 23);
button2.TabIndex = 1;
button2.Text = "停止";
button2.UseVisualStyleBackColor = true;
button2.Click += Button2_Click;
//
// button3
//
button3.Location = new Point(267, 131);
button3.Name = "button3";
button3.Size = new Size(75, 23);
button3.TabIndex = 2;
button3.Text = "关闭";
button3.UseVisualStyleBackColor = true;
button3.Click += Button3_Click;
//
// timer1
//
timer1.Tick += Timer1_Tick;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Microsoft YaHei UI", 18F);
label1.ForeColor = Color.Red;
label1.Location = new Point(1, 221);
label1.Name = "label1";
label1.Size = new Size(470, 31);
label1.TabIndex = 3;
label1.Text = "好消息:本店让利大酬宾,所有商品八折。";
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 17F);
AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = Properties.Resources._05;
BackgroundImageLayout = ImageLayout.Stretch;
ClientSize = new Size(354, 267);
Controls.Add(label1);
Controls.Add(button3);
Controls.Add(button2);
Controls.Add(button1);
Name = "Form1";
StartPosition = FormStartPosition.CenterScreen;
Text = "窗体中滚动字幕";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Button button2;
private Button button3;
private System.Windows.Forms.Timer timer1;
private Label label1;
}
}
(3)Form1.cs设计
namespace _188
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
/// <summary>
/// 开始滚动
/// </summary>
private void Button1_Click(object sender, EventArgs e)
{
timer1.Enabled = true;
}
/// <summary>
/// 停止滚动
/// </summary>
private void Button2_Click(object sender, EventArgs e)
{
timer1.Enabled = false;
}
/// <summary>
/// 关闭窗体
/// </summary>
private void Button3_Click(object sender, EventArgs e)
{
Close();
}
/// <summary>
/// 用Timer来控制滚动速度
/// </summary>
private void Timer1_Tick(object sender, EventArgs e)
{
label1.Left -= 2; //设置label1左边缘与其容器的工作区左边缘之间的距离
if (label1.Right < 0) //当label1右边缘与其容器的工作区左边缘之间的距离小于0时
{
label1.Left = Width; //设置label1左边缘与其容器的工作区左边缘之间的距离为该窗体的宽度
}
}
}
}
(4) 生成效果