Winform 指示灯效果

代码:

            GraphicsPath graphicsPath = new GraphicsPath();
            graphicsPath.AddEllipse(15, 15, 150, 150);
            label1.Region = new Region(graphicsPath);
            label1.BackColor = Color.Red;   

效果图:

     

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
以下是实现WinForm跑马灯效果的方法: 1. 使用Timer控件和Label控件实现跑马灯效果: ```csharp using System; using System.Windows.Forms; namespace WindowsFormsApp { public partial class Form1 : Form { private Timer timer; private Label label; public Form1() { InitializeComponent(); InitializeTimer(); InitializeLabel(); } private void InitializeTimer() { timer = new Timer(); timer.Interval = 100; // 设置定时器间隔时间,单位为毫秒 timer.Tick += Timer_Tick; timer.Start(); } private void InitializeLabel() { label = new Label(); label.Text = "这是一个跑马灯效果Label"; label.Location = new System.Drawing.Point(10, 10); label.AutoSize = true; Controls.Add(label); } private void Timer_Tick(object sender, EventArgs e) { // 每次定时器触发时,将Label的位置向左移动一定距离 label.Left -= 5; // 当Label完全移出窗口时,将其重新放置到窗口右侧 if (label.Right < 0) { label.Left = Width; } } } } ``` 2. 使用PictureBox控件和Timer控件实现跑马灯效果: ```csharp using System; using System.Windows.Forms; namespace WindowsFormsApp { public partial class Form1 : Form { private Timer timer; private PictureBox pictureBox; public Form1() { InitializeComponent(); InitializeTimer(); InitializePictureBox(); } private void InitializeTimer() { timer = new Timer(); timer.Interval = 100; // 设置定时器间隔时间,单位为毫秒 timer.Tick += Timer_Tick; timer.Start(); } private void InitializePictureBox() { pictureBox = new PictureBox(); pictureBox.Image = Properties.Resources.marquee_image; // 设置跑马灯图片 pictureBox.SizeMode = PictureBoxSizeMode.AutoSize; pictureBox.Location = new System.Drawing.Point(10, 10); Controls.Add(pictureBox); } private void Timer_Tick(object sender, EventArgs e) { // 每次定时器触发时,将PictureBox的位置向左移动一定距离 pictureBox.Left -= 5; // 当PictureBox完全移出窗口时,将其重新放置到窗口右侧 if (pictureBox.Right < 0) { pictureBox.Left = Width; } } } } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值