搞笑winform小程序代码
时间: 2023-11-27 22:01:18 浏览: 122
Winform是一种用于开发Windows桌面应用程序的技术平台,借助于C#语言可以创建出很多有趣的小程序。下面是一个搞笑的Winform小程序代码示例:
```C#
using System;
using System.Drawing;
using System.Windows.Forms;
namespace FunnyWinformApp
{
public partial class MainForm : Form
{
private Button button;
private Label label;
public MainForm()
{
InitializeComponent();
InitializeUI();
}
private void InitializeUI()
{
button = new Button();
button.Text = "点击我";
button.Size = new Size(100, 50);
button.Location = new Point(100, 100);
button.Click += Button_Click;
label = new Label();
label.Text = "Hello, Winform!";
label.Size = new Size(200, 50);
label.Location = new Point(100, 200);
Controls.Add(button);
Controls.Add(label);
}
private void Button_Click(object sender, EventArgs e)
{
Random random = new Random();
int x = random.Next(0, 500);
int y = random.Next(0, 300);
button.Location = new Point(x, y);
label.Text = "你点到我了!";
}
}
}
```
这个小程序创建了一个窗体,上面有一个按钮和一个标签。当用户点击按钮时,按钮会在窗体内随机移动位置,并且标签的文本会改变为“你点到我了!”。这个小程序展示了Winform的基本UI设计和交互功能,同时也带有一些小小的搞笑元素,可以为用户带来一些乐趣。
阅读全文