乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
winforms开发-弹出短暂提示消息 | chenzuoli's blog

winforms开发-弹出短暂提示消息

不多说,且看代码即可,

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

private void ShowMessageBoxWithTimeout(string message, int timeout)
{
// 创建提示框
Form messageBoxForm = new Form()
{
Width = 300,
Height = 150,
FormBorderStyle = FormBorderStyle.FixedDialog,
Text = "提示",
StartPosition = FormStartPosition.CenterScreen
};

Label messageLabel = new Label()
{
TextAlign = ContentAlignment.MiddleCenter,
AutoSize = true,
Text = message,
Left = 50,
Top = 50
};
messageBoxForm.Controls.Add(messageLabel);

// 显示提示框
messageBoxForm.Show();

// 设置定时器关闭提示框
System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer()
{
Interval = timeout
};
timer.Tick += (sender, e) =>
{
timer.Stop();
messageBoxForm.Close();
};
timer.Start();
}


// 添加一个btn绑定此事件
private void button1_Click(object sender, EventArgs e)
{
ShowMessageBoxWithTimeout("这是一个提示消息!", 3000);
}

好了,记录到这里,持续更新中。

记录问题也是一种修行。

修行


书山有路勤为径,学海无涯苦作舟。

欢迎关注微信公众号:【乐知付加密平台】,您的网络资源可变现
乐知付加密平台

一起学习,一起进步。

-------------本文结束感谢您的阅读-------------