如何在任务栏中显示一个框?在表格中我添加了图像,但是如何在右下方的任务栏中显示呢?

像这样:



例:

最佳答案

您可能想研究NotifyIcon Class,因为您正在谈论任务栏。

对于通知表单,您可以将主屏幕定位到右下角:

像这样:

notifyForm.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - notifyForm.Width,
                                Screen.PrimaryScreen.WorkingArea.Height - notifyForm.Height);


确保您的通知设置了以下属性:

notifyForm.StartPosition = FormStartPosition.Manual;

关于c# - 创建通知框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8206259/

10-08 22:26