c# 实现桌面弹幕

实现桌面弹幕需求
1、开启弹幕

 /// <summary>
 /// 开启弹幕
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 /// [STAThread]
 private void start_barrage_Click(object sender, RibbonControlEventArgs e)
 {
      Barrage form = new Barrage();
      form.Show();
 }

2、弹幕循环播放页面实现

using Business;
using Common.RestSharp;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Text;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace DanMu
{
    public partial class Barrage : Form
    {
        public Barrage()
        {
            InitializeComponent();
        }

        private void Barrage_Load(object sender, EventArgs e)
        {
            Rectangle rec = Screen.GetWorkingArea(this);
            this.Height = rec.Height / 3 * 2; // 3分之2
            this.Width = rec.Width;
            this.Location = new Point(0, 0);
            this.BackColor = Color.White;
            this.TransparencyKey = Color.White;
            this.Opacity = 1;

            AddTanMu("弹幕开启");
            //测试运行
            Thread th1 = new Thread(new ThreadStart(test));
            th1.Start();
        }
        /// <summary>
        /// 运行测试
        /// </summary>
        private void test()
        {
            List<string> list = getBarrageinfo();
            if (list.Count() > 0)
            {
                int index = 0;
                int length = list.Count();
                while (true)
                {
                    if (index>=length-1)
                    {
                        index = (index % (length - 1));
                    }
                    AddTanMu(list[index]);
                    index++;
                    Thread.Sleep(new Random().Next(2000, 3500));
                }
            }

        }
        /// <summary>
        /// 获取弹幕信息
        /// </summary>
        /// <returns></returns>
        private List<string> getBarrageinfo()
        {
            List<string> info = new List<string>();
            info.Add("哈哈哈哈哈哈哈");
            info.Add("我是第二名。。。");
            info.Add("弹幕3打卡");
            return info;
        }


        public void AddTanMu(String word)
        {
            Label label = new Label();
            label.Text = word;
            label.AutoSize = true;
            label.ForeColor = Color.Red;
            label.BackColor = Color.Transparent;
            label.Font = new Font("宋体", 20);
            label.Location = new Point(this.Width, new Random().Next(this.Height - label.Height));

            this.Invoke(new Action(() =>
            {
                this.Controls.Add(label);
            }));
        }

        private void Timer_Tick(object sender, EventArgs e)
        {
            //方法1:
            //foreach (Label label in this.Controls)
            //{
            //    Task.Run(() =>
            //    {
            //        //单独执行的委托,防止卡顿
            //        label.Invoke(new Action(() =>
            //        {
            //            //步数、速度
            //            for (int v = 0; v < 3; v++)
            //            {
            //                label.Left -= 2;
            //            }
            //        }));

            //        //超出移除
            //        if (label.Left + label.Width < 0)
            //        {
            //            this.Invoke(new Action(() =>
            //            {
            //                this.Controls.Remove(label);
            //                label.Dispose();

            //            }));
            //        }
            //    });
            //}

            //方法2:
            foreach (Label label in this.Controls)
            {
                label.Invoke(new Action(() =>
                {
                    //步数、速度
                    //【3(次数)*2(步数)=6(速度)】
                    for (int v = 0; v < 3; v++)
                    {
                        label.Left -= 2;
                    }
                }));

                //超出移除
                if (label.Left + label.Width < 0)
                {
                    label.Visible = false;
                    this.Controls.Remove(label);
                }
            }
        }

    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值