我是使用C#的新手,我想知道是否有一种方法可以将光标更改为Form窗口中特定区域的等待光标。
在我的情况下,我希望光标在处理数据时更改为等待光标,并且光标位于文本框输出上。
这一切都可能吗?
此致 艾米丽
答案 0 :(得分:1)
如果控件覆盖了“特定区域”,则可以将该控件的Cursor
属性设置为Cursors.WaitCursor
。在您的情况下,您似乎有一个TextBox
:
yourTextBox.Cursor = Cursors.WaitCursor;
否则,在表单中添加一个新控件:
var control = new Control();
// use the Location and Size properties to define your "area'
control.Location = ...;
control.Size = ...;
// set the cursor
control.Cursor = Cursors.WaitCursor;
yourForm.Controls.Add(control);