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
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:
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