Can I change the default cursor to a wait cursor for a set position within the form.design? C# -


i new using c# , wondering if there method changing cursor wait cursor specific area within form window.

in case cursor change wait cursor when processing data , cursor positioned on text box output.

is @ possible?

regards, emily

if "specific area" covered control, can set control's cursor property cursors.waitcursor. in case seems have textbox:

yourtextbox.cursor = cursors.waitcursor; 

otherwise, add new control the form:

var control = new control(); // use location , size properties define "area' control.location = ...; control.size = ...; // set cursor control.cursor = cursors.waitcursor; yourform.controls.add(control); 

Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -