events - C# - Make form semi-transparent while moving -
Is there a way to create semi-transparent forms while converting and then it is no longer transferred when it becomes irreversible is being done ? I have tried the Form_Move
event with no luck.
I got stuck, any help?
Form is loaded in the form of semi-transparent because the form is to be moved to the initial state , Which hit trigger the event.
ResizeEnd event is set on fire after a form is fired, something like this should be done:
bool canMove = false; Private Zero Form 1_load (Object Sender, EventAgds E) {canMove = true; } Private Zero Form 1_Move (Object Sender, EventAGRS E) {if (Canvov) {this.Opacity = 0.5; }} Private Zero form1_rescind (object sender, eventAgps E) {this.Opacity = 1; }
Comments
Post a Comment