是否有可能在等待光标旁边显示一个小的信息文本。这将是一个不错的功能,可以在用户等待期间向用户提供一些活动信息。

最佳答案

是。您必须在鼠标位置旁边使用标签。只需尝试以下代码:

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);

        }

关于c# - Winforms:WAITING光标与信息文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10615468/

10-13 06:57