什么是Toast消息提示?
实现WinForms中的Toast效果
1. 创建Toast窗体
设置
FormBorderStyle
属性为None
,以去除窗体边框。设置
StartPosition
属性为Manual
,以便我们可以手动指定窗体的显示位置。添加一个
Label
控件(例如命名为lblMessage
),用于显示消息文本。设置
ShowInTaskbar
属性为False
,防止窗体在任务栏中显示。
2. 实现Toast显示逻辑
csharp
public partial class ToastForm : Form
{
private Timer timer = new Timer();
public ToastForm(string message, int duration)
{
InitializeComponent();
lblMessage.Text = message;
StartPosition = FormStartPosition.Manual;
Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - Width - 10, Screen.PrimaryScreen.WorkingArea.Height - Height - 10);
timer.Interval = duration;
timer.Tick += (s, e) => Close();
timer.Start();
Show();
}
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ClassStyle = cp.ClassStyle | 0x200; // CS_DROPSHADOW
return cp;
}
}
private void ToastForm_Load(object sender, EventArgs e)
{
this.Opacity = 0;
timer.Start();
}
private void timer_Tick(object sender, EventArgs e)
{
this.Opacity += 0.1;
if (this.Opacity >= 1)
{
timer.Interval = 2000; // 显示时长
timer.Tick += (s, args) =>
{
this.Opacity -= 0.1;
if (this.Opacity <= 0)
{
timer.Stop();
this.Close();
}
};
}
}
}
3. 调用Toast窗体
csharp
ToastForm toast = new ToastForm("这是一个Toast消息", 3000); // 显示时长为3秒
注意事项
确保在多线程环境下安全地访问UI控件。
考虑在窗体关闭时释放资源,例如停止定时器。
可以通过调整
Opacity
和Location
属性来实现更平滑的显示和隐藏效果。
结论
往期精品推荐: