当前位置:  编程技术>.net/c#/asp.net

C# Timer定时器控件的应用举例

    来源: 互联网  发布时间:2014-08-30

    本文导语:  思路及步骤: 定义两个Timer控件,一个命名为timer1,另外一个命名为timer2。 timer1的作用是控制窗体从左往右飘动,timer2控制窗体从右往左飘动。且两个Timer控件不能同时启动。 这里先设定timer1组件启动,当timer1启动后,每隔...

思路及步骤:
定义两个Timer控件,一个命名为timer1,另外一个命名为timer2。
timer1的作用是控制窗体从左往右飘动,timer2控制窗体从右往左飘动。且两个Timer控件不能同时启动。
这里先设定timer1组件启动,当timer1启动后,每隔0.01秒,都会在触发的事件中给窗体的左上角的横坐标都加上"1",这时看到的结果是窗体从左往右不断移动,当移动到一定的位置后,timer1停止。timer2启动,每隔0.01秒,在触发定义的事件中给窗体的左上角的横坐标都减去"1",这时看到的结果是窗体从右往左不断移动。当移动到一定位置后,timer1启动,timer2停止,如此反覆,这样窗体也就飘动起来了。

1、窗体的初始位置
设定窗体的初始位置,是在事件Form1_Load()中进行的。此事件是当窗体加载的时候触发的。Form有一个DesktopLocation属性,这个属性是设定窗体的左上角的二维位置。在程序中是通过Point结构变量来设定此属性的值,具体如下:
 

//设定窗体起初飘动的位置,位置为屏幕的坐标的(0,240)
private void Form1_Load ( object sender , System.EventArgs e )
{
    Point p = new Point ( 0 , 240 ) ;
    this.DesktopLocation = p ;
}

2、实现窗体从左往右飘动
设定timer1的Interval值为"10",就是当timer1启动后,每隔0.01秒触发的事件是timer1_Tick(),在这个事件中编写给窗体左上角的横坐标不断加"1"的代码,就可以了,
 

private void timer1_Tick(object sender, System.EventArgs e)
{
Point p = new Point ( this.DesktopLocation.X + 1 , this.DesktopLocation.Y ) ;
this.DesktopLocation = p ;
if ( p.X == 550 )
 {
     timer1.Enabled = false ;
     timer2.Enabled = true ;
 }
}

3、实现窗体从右往左飘动
代码设计和从左往右飘动差不多,主要的区别是减"1"而不是加"1"了,具体如下:
 

//当窗体左上角位置的横坐标为-150时,timer2停止,timer1启动
private void timer2_Tick(object sender, System.EventArgs e)
{
    Point p = new Point ( this.DesktopLocation.X - 1 , this.DesktopLocation.Y ) ;
    this.DesktopLocation = p ;
    if ( p.X == - 150 )
    {
            timer1.Enabled = true ;
            timer2.Enabled = false ;
    }
}

本例的完整代码如下:
 

代码示例:

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace WindowsApplication1
{
///
/// Form1 的摘要说明。
/// 作者: Shadow
/// www.
///
public class Form1 : System.Windows.Forms.Form
{

private Timer timer1 ;

private Timer timer2 ;

private Label label1 ;

private Button button1 ;
private System.Windows.Forms.Button button2;

private System.ComponentModel.IContainer components ;

private string remarkStatus = "";

public Form1 ( )

{
InitializeComponent ( ) ;
}

protected override void Dispose ( bool disposing )
{

if ( disposing )
{

if ( components != null )
{
components.Dispose ( ) ;
}
}
base.Dispose( disposing ) ;
}

private void InitializeComponent ( )
{
this.components = new System.ComponentModel.Container();
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.timer2 = new System.Windows.Forms.Timer(this.components);
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 10;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// timer2
//
this.timer2.Interval = 10;
this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
//
// label1
//
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("华文行楷", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(192)));
this.label1.Location = new System.Drawing.Point(16, 88);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(438, 39);
this.label1.TabIndex = 1;
this.label1.Text = "窗 体 动 起 来 喽!";
this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// button1
//
this.button1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(255)));
this.button1.Font = new System.Drawing.Font("宋体", 10F);
this.button1.ForeColor = System.Drawing.Color.Blue;
this.button1.Location = new System.Drawing.Point(96, 24);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(96, 27);
this.button1.TabIndex = 0;
this.button1.Text = "停止飘动";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(255)));
this.button2.Font = new System.Drawing.Font("宋体", 10F);
this.button2.ForeColor = System.Drawing.Color.Blue;
this.button2.Location = new System.Drawing.Point(368, 24);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(96, 27);
this.button2.TabIndex = 2;
this.button2.Text = "开始飘动";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.BackColor = System.Drawing.Color.Silver;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(488, 165);
this.Controls.Add(this.button2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form1";
this.Text = " Shadow用C#做的飘动的窗体!";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}

static void Main ( )
{
Application.Run ( new Form1 ( ) ) ;
}

private void Form1_Load ( object sender , System.EventArgs e )
{
Point p = new Point ( 0 , 240 ) ;

this.DesktopLocation = p ;
}

private void timer1_Tick(object sender, System.EventArgs e)
{
Point p = new Point ( this.DesktopLocation.X + 1 , this.DesktopLocation.Y ) ;

this.DesktopLocation = p ;

if ( p.X == 550 )
{
timer1.Enabled = false ;

timer2.Enabled = true ;
}
}
private void timer2_Tick(object sender, System.EventArgs e)
{

Point p = new Point ( this.DesktopLocation.X - 1 , this.DesktopLocation.Y ) ;
this.DesktopLocation = p ;
if ( p.X == - 150 )
{
timer1.Enabled = true ;
timer2.Enabled = false ;
}

}
private void button1_Click(object sender, System.EventArgs e)
{
if(timer1.Enabled==true)
remarkStatus = "timer1";
else if(timer2.Enabled == true)
remarkStatus = "timer2";

timer1.Stop ( ) ;
timer2.Stop ( ) ;
}

private void button2_Click(object sender, System.EventArgs e)
{
if(remarkStatus == "timer1")
{
timer1.Start( ) ;

timer2.Stop ( ) ;
}
else
{
timer1.Stop( ) ;

timer2.Start ( ) ;
}
}
}
}


    
 
 

您可能感兴趣的文章:

  • C# Timer定时器控件运行时需要修改系统时间的问题
  • C# Timer类的简单例子
  • C#中定时器控件Timer的简单用法
  • C#中定时器System.Timers.Timer类的例子
  • C#中Timer的简单范例(System.Windows.Forms.Timer)
  • C#中timer类的用法总结
  • C#中Timer定时器控件的使用方法
  • C# timer 定时器类的用法举例
  • C#中timer类定时器控件的应用实例
  • C#中使用System.Timers.Timer定时器控件的例子
  • C#中Timer定时器控件实例与原理解析
  • C#进度条ProgressBar和定时器Timer控件的应用举例
  • c#各种Timer类的区别与用法介绍
  • C#各种定时器Timer类的区别与使用介绍
  • C#中定时器控件Timer学习参考
  • JavaScript定时器 Timer.js
  • asp.net Timer无刷新定时器的例子
  • posix定时器问题“undefined reference to `timer_create'”
  • 关于在 red hat 下用posix timer实现高精度定时器的问题 急!!!
  • PHP框架Swoole定时器Timer特性分析
  • asp.net Timer定时器用法示例
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java 实现 vb中timer控件的功能?
  • Qt中有没有类似VB中winsock和timer的控件呀,我好像没有找到.
  • java命名空间java.util类timer的类成员方法: timer定义及介绍
  • 在编写驱动程序的时候,timer处理中,遇到了其他某timer处理例程以外的代码的执行。请指点,各位
  • java命名空间javax.management.timer类timer的类成员方法: stop定义及介绍
  • 关于__mod_timer函数(linux/kernel/timer.c中定义的)的问题
  • java命名空间javax.management.timer类timer的类成员方法: removeallnotifications定义及介绍
  • Applet中定时用线程定时,还是用Timer定时比较好????
  • java命名空间javax.management.timer类timer的类成员方法: getnbnotifications定义及介绍
  • jQuery 计时器插件 jQuery Timer
  • java命名空间javax.management.timer类timer的类成员方法: postderegister定义及介绍
  • java.util中的Timer和TimerTask类
  • java命名空间javax.management.timer类timer的类成员方法: isempty定义及介绍
  • 有关timer_list结构的问题
  • java命名空间javax.management.timer类timer的类成员方法: one_day定义及介绍
  • 如何注册Timer中断
  • java命名空间javax.management.timer类timer的类成员方法: one_hour定义及介绍
  • 问一个timer的问题
  • java命名空间javax.management.timer类timer的类成员方法: one_minute定义及介绍
  • 线程内如何实现timer功能?
  • java命名空间javax.management.timer类timer的类成员方法: prederegister定义及介绍
  • Android站立会议时间控制软件 Standup Timer
  • java命名空间javax.management.timer类timer的类成员方法: one_second定义及介绍
  • asp.net中System.Timers.Timer的例子


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3