C#屏幕壁纸

news/2024/11/7 20:35:52/

C#屏幕壁纸

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace WindowsFormsApp1
{public partial class Form1 : Form{public Form1(){InitializeComponent();}private void Form1_Load(object sender, EventArgs e){this.BackColor = Color.Cyan;label1.ForeColor = Color.Red;label1.Font = new Font("",24);label1.Left = this.Width / 2 - label1.Width / 2;this.FormBorderStyle = FormBorderStyle.None;this.Location = new Point(0,0);}private void timer1_Tick(object sender, EventArgs e){this.Left = this.Left + 3;this.Top = this.Top + 3;if (this.Top + this.Height >= Screen.PrimaryScreen.WorkingArea.Height){timer1.Stop();timer2.Start();}if (this.Left + this.Width >= Screen.PrimaryScreen.Bounds.Width){timer1.Stop();timer4.Start();}}private void timer2_Tick(object sender, EventArgs e){//this.Top += 3;this.Left = this.Left + 3;this.Top = this.Top - 3;if (this.Left + this.Width >= Screen.PrimaryScreen.Bounds.Width){timer2.Stop();timer3.Start();}if (this.Top <= 0){timer2.Stop();timer1.Start();}}private void timer3_Tick(object sender, EventArgs e){this.Left = this.Left - 3;this.Top = this.Top - 3;if (this.Left <= 0){timer3.Stop();timer4.Start();}if (this.Top <= 0){timer3.Stop();timer4.Start();}}private void timer4_Tick(object sender, EventArgs e){this.Left = this.Left - 3;this.Top = this.Top + 3;if (this.Left <= 0){timer4.Stop();timer1.Start();}if (this.Top + this.Height >= Screen.PrimaryScreen.WorkingArea.Height){timer4.Stop();timer3.Start();}}}
}

运行结果

运行结果


http://www.ppmy.cn/news/339635.html

相关文章

6月29日Mendix北京见面会,抓紧时间报名!

喜欢Mendix的小伙伴们&#xff0c;好消息来啦&#x1f4e2;&#xff01; 6月29日&#xff0c;Mendix北京社区活动将在这个炎热的夏日中隆重推出&#xff0c;一起来参加吧&#xff01; 听说这次meet-up的嘉宾们都在用心准备内容中&#xff0c;这次不仅有MX首席架构师Matt、懂中…

调用阿里API实现手机号归属地查询

调用阿里API实现手机号归属地查询 1&#xff0e;作者介绍2&#xff0e;号码归属地介绍2.1 什么是手机号码归属地&#xff1f;2.2 为什么需要手机号码归属地&#xff1f;2.3 手机号码归属地查询对个人的运用 3&#xff0e;调用阿里API实现手机号归属地查询3.1阿里API调用3.2补充…

【Python从入门到人工智能】14个必会的Python内置函数(10)——序列反转 | 排序 | 可迭代对象(含综合应用场景)

春天不远了,不要失去发芽的心情。 🎯作者主页: 追光者♂🔥 🌸个人简介: 💖[1] 计算机专业硕士研究生💖 🌟[2] 2022年度博客之星人工智能领域TOP4🌟 🏅[3] 阿里云社区特邀专家博主🏅 🏆[4] CSDN-人工智能领域优质创作者🏆 📝[5] …

淘宝618每日一猜答案6月12日 源氏木语获得多少个奖项?

淘宝6月12日每日一猜答案是什么&#xff1f;&#xff0c;接下来也会给大家来介绍一下6月12日淘宝大赢家每日一猜的答案。 淘宝每日一猜6月12日答案分享 活动问题&#xff1a;源氏木语获得多少个奖项&#xff1f; 活动答案&#xff1a;【15】 注意是阿拉伯数字&#xff01; …

华为OD机试真题 JavaScript 实现【食堂供餐】【2023 B卷 考生抽中题】,附详细解题思路

一、题目描述 某公司员工食堂以盒饭的方式供餐。 为将员工取餐排队时间降为0&#xff0c;食堂的供餐速度必须要足够快。 现在需要根据以往员工取餐的统计信息&#xff0c;计算出一个刚好能达到排队时间为0的最低供餐速度。 即&#xff0c;食堂在每个单位时间内必须至少做出…

Vue3 + TS + Vite —— 大屏可视化 项目实战

前期回顾 Vue3 Ts Vite pnpm 项目中集成 —— eslint 、prettier、stylelint、husky、commitizen_彩色之外的博客-CSDN博客搭建VIte Ts Vue3项目并集成eslint 、prettier、stylelint、huskyhttps://blog.csdn.net/m0_57904695/article/details/129950163?spm1001.2014…

冥想第八百一十八天

1.明天就该回来了&#xff0c;今天晚上跑了7公里。 2.晚上休息的不好&#xff0c;因为要回家。 3.一周忙起来还是特别快的。 4.感谢父母&#xff0c;感谢朋友&#xff0c;感谢家人&#xff0c;感谢不断进步的自己。

联想拯救者14实现快捷键调屏幕亮度

前言 我的EFI制作完成后&#xff0c;快捷键调节声音大小的功能默认就支持&#xff0c;但是快捷键调整亮度就不支持了。 快捷键调节亮度这样的需求对我来话基本是可有可无。因为鼠标简单点点就可以调节亮度了。Big Sur调节亮度真的方便&#xff0c;鼠标点两下就搞定啦。 点击状…