Pewtur
asked on
Will someone help me with a C# exercise?
I need a walkthrough on how to do this exercise.
------------
Create a Windows application that contains two textboxes and one button.
The textboxes should be used to allow the user to input the x- and y-coordinates
to indicate where the form should be positioned.When the user clicks the button, the
window should be moved to that new point. Be sure to label the textboxes
appropriately.
Hint: One easy way to do this is to set the location using an instance of the Point
class when the user clicks the button.To do this, you could allow the user to input
values for both x and y into two separate textbox objects.After being retrieved, they
would need to be parsed or converted to their integer equivalent.Then use the
numeric values for x and y to set the location by typing this.Location = new
Point(x,y);.
-----------
------------
Create a Windows application that contains two textboxes and one button.
The textboxes should be used to allow the user to input the x- and y-coordinates
to indicate where the form should be positioned.When the user clicks the button, the
window should be moved to that new point. Be sure to label the textboxes
appropriately.
Hint: One easy way to do this is to set the location using an instance of the Point
class when the user clicks the button.To do this, you could allow the user to input
values for both x and y into two separate textbox objects.After being retrieved, they
would need to be parsed or converted to their integer equivalent.Then use the
numeric values for x and y to set the location by typing this.Location = new
Point(x,y);.
-----------
Is this a school assignment?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Excellent work! TY!!!
It is a fairly simple exercise and you should do it yourself
@@minhvc, I agree. Also, I rarely help people on their assignments.
Arun
Arun