实现鼠标点击以后,内容水平滚动

Posted 晴天天晴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现鼠标点击以后,内容水平滚动相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace gundong_Label
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
button2.Enabled = false;
}

private void timer1_Tick(object sender, EventArgs e)
{
label1.Left -=3; //设置label1左边缘与其容器的工作区左边缘之间的距离
if (label1.Right < 0) //当label1右边缘与其容器的工作区左边缘之间的距离小于0时
{
label1.Left = this.Width; //设置label1左边缘与其容器的工作区左边缘之间的距离为该窗体的宽度
}
}
//开始演示
private void button1_Click(object sender, EventArgs e)
{
timer1.Enabled = true; //开始滚动
button2.Enabled = true;

}
//单击暂停按钮
private void button2_Click(object sender, EventArgs e)
{
timer1.Enabled = false; //停止滚动
button2.Enabled = false;
}
//退出
private void button3_Click(object sender, EventArgs e)
{
this.Close();
}
}
}

以上是关于实现鼠标点击以后,内容水平滚动的主要内容,如果未能解决你的问题,请参考以下文章

delphi6 两个dbgrid如何实现水平滚动条同步滚动?

使用鼠标滚动的html水平滚动

Flash CS4 AS3 水平动画剪辑滚动鼠标移动

水平鼠标滚轮事件? (WinAPI)

jQuery 鼠标滚轮水平滚动

Html 表格在中间水平滚动,就像在触摸屏上一样