Question
Create a windows application that contains two textboxes (with labels) and one button. The textboxes should be used to allow the user to input x
Create a windows application that contains two textboxes (with labels) and one button. The textboxes should be used to allow the user to input x and y coordinates to indicate where the form should be positioned. When the user checks the button, the window should be moved to that new point. Be sure to label the textboxes appropriately. Change the forms background color. Add a title caption to the form Include a heading above the textboxes and button. Enlarge the size of the font. Only allow positive integers to be used for the coordinates. Hint: One easy way to do this is to set the location using an instance of the point. Class when the user checks 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 used numeric value of x and y to set the location by typing Location = new Point (x,y);
I am new at this so please go step by step
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started