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
Post a Comment