Winforms: Wait Cursor with info text

Is it possible to show a small information file next to the wait cursor. This will be a nice feature to provide the user with some information about the activity while waiting.

+3
source share
2 answers

Yes. You must use the label next to the mouse position. just try the following codes:

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

        }
+2
source

I recommend using a custom cursor. C # Tutorial - How to Use Custom Cursors

+1
source

All Articles