编写一个C#表白整蛊窗体应用
时间: 2023-07-12 19:42:12 浏览: 127
好的,我可以帮你编写一个简单的表白整蛊窗体应用。以下是代码示例:
```csharp
using System;
using System.Windows.Forms;
namespace LoveJokeApp
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void btnSurprise_Click(object sender, EventArgs e)
{
MessageBox.Show("我喜欢你好久了,愿意做我女朋友吗?");
Application.Exit();
}
private void MainForm_Load(object sender, EventArgs e)
{
this.FormBorderStyle = FormBorderStyle.None;
this.WindowState = FormWindowState.Maximized;
this.TopMost = true;
this.BackColor = System.Drawing.Color.Red;
}
private void timer1_Tick(object sender, EventArgs e)
{
Random r = new Random();
this.Left = r.Next(0, Screen.PrimaryScreen.Bounds.Width - this.Width);
this.Top = r.Next(0, Screen.PrimaryScreen.Bounds.Height - this.Height);
}
}
}
```
这是一个简单的窗体应用,当用户点击“惊喜”按钮时,会弹出一个表白的消息框。而整蛊的部分在窗体加载时实现,窗体会全屏显示,并且定时随机移动位置,让用户无法关闭窗体,只能通过任务管理器来结束应用程序。
你可以根据自己的需求进行修改和完善。希望能帮到你!
阅读全文