Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Create a C# Windows application for glove shoes order form. The order form shoul

ID: 3664959 • Letter: C

Question

Create a C# Windows application for glove shoes order form. The order form should have a GUI that looks like the following:

These shoes are sold at the price of $49.95 per pair. The customer uses a NumericUpDown control to choose shoe size. Shoe size must be between 6 and 14, with increment of 1. The default size is 6. The customer also uses a NumericUpDown control to choose quantity. Quantity must be between 0 and 100, with increment of 1. The default quantity is 0. Whenever the quantity changes, the program updates subtotal, shipping and total automatically. Subtotal is calculated by multiplying quantity by 49.95. Total equals the sum of subtotal and shipping. The default shipping is regular shipping ($1.95 for the whole order). The customer can choose express shipping ($4.95 for the whole order) if she wants. Update shipping cost and total whenever the user changes shipping method. If the quantity is 0, subtotal, shipping and total should all be 0, and the shipping radio buttons should be unchecked. You can make a radio button checked or unchecked by assigning true or false to its checked property.

The following is an example:

If the Submit button is clicked, display the following message box:

If the Clear button is clicked, reset everything to default.

The image for shoe is below:

Glove Shoes Order Form Glove Shoes Name Address Shoe Size : 6| Quantity : 0 Shipping Regular shipping [$1.95] Express Shipping [$4.95] Subtotal Shipping Total 0.00 0.00 0.00 Submit Clear

Explanation / Answer

Add the following code to the Click event procedure for the Submit button

Add the following code to the Click event procedure for the Cancel button to clear the controls.

Click the MainMenu control on the form and then double-click the Exit MenuItem to create its Click event method. Add the following code to the Click event procedure for the Exit menu item to close the application.