Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in visual studio C# Create a windows application that contains two textboxes (with labels) and one button. The textboxes should be used to allow the

in visual studio C# 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 . starting from creating the form

how to create the form please

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

PostgreSQL Up And Running A Practical Guide To The Advanced Open Source Database

Authors: Regina Obe, Leo Hsu

3rd Edition

1491963417, 978-1491963418

More Books

Students also viewed these Databases questions