是否有可能在等待光标旁边显示一个小的信息文本.这将是一个不错的功能,可以在用户等待期间向用户提供一些活动信息.
解决方法:
是.您必须在鼠标位置旁边使用标签.只需尝试以下代码:
private void pictureBox1_MouseEnter(object sender, EventArgs e)
{
pictureBox1.Cursor = Cursors.WaitCursor;
Label lb = new Label();
lb.Location = new Point(MousePosition.X-this.Left,MousePosition.Y-this.Top);
lb.Text = "Your Info";
this.Controls.Add(lb);
}