
PreferredCustomer Class
Program plan:
Design the form:
Place a four text boxes control on the form, and change its name and properties to get the full name, address, phone number, and amount purchased from the user.
Place a four label boxes control on the form, and change its name and properties.
Place a one radio buttons control on the form, and change its name and properties.
Place a command button on the form, and change its name and properties to retrieve the object properties and then display the values in message box.
In code window, write the code:
Program.cs:
Include the required libraries.
Define the namespace “Program11_5”.
Define a class “Program”.
Define a constructor for the class.
Define required functions to run “Form1”.
Form1.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a class “Form1”.
In Form1_Load() method,
Create an object for Customer derived class.
Assign the text box input to field of base class using derived class object.
Display the retrieved fields in message box.
Close the application.
Person.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a base class “Person”.
Declare the required fields.
Define the parameterless constructor.
Define Name, address, and phone number property to use get and set methods.
Customer.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a derived class “Customer” which is derived from base class “Person”.
Declare the required fields.
Define the parameterless constructor to initialize the required fields.
Define Customer number and addToMailList property to use get and set methods.
PreferredCustomer.cs:
Include the required libraries.
Define namespace “Program11_5”.
Define a derived class “PreferredCustomer” which is derived from base class “Customer”. But this “Customer” class is derived from base class “Person”.
Declare the required fields.
Define the parameterless constructor to initialize the required fields.
Define purchased amount and discount level property to use get and set methods. Calculate the discount level based on purchased amount.
Form Design:
View the Form Design in IDE.
Set the Form Control properties in Properties window as follows:
Object | Property | Setting |
Form1 | Text | Program11_5 |
label1 | Text | Full Name: |
label2 | Text | Address: |
label3 | Text | Phone Number: |
Label4 | Text | Amount Purchased: $ |
textBox1 | Text | (Empty) |
textBox2 | Text | (Empty) |
textBox3 | Text | (Empty) |
textBox4 | Text | (Empty) |
radioButton1 | Text | Don’t add me to mailing list |
btnDisplay | Text | Display |
Add four label box controls to the form from Toolbox.
Add four text box controls to the form from Toolbox.
Add one radio button control to the form from Toolbox.
Add one command button control to the form from Toolbox.

Want to see the full answer?
Check out a sample textbook solution
Chapter 11 Solutions
Starting Out With Visual C# (5th Edition)
- Write the following in C# WinForms. Implement a function in the main menu that makes the poacher move to random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize); Create the appropriate poacher class as wellarrow_forwardWrite the following in C# WinForms. Implement a function in the main menu that makes the poacher move to random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forwardWrite the following in C# WinForms. Implement a function in the main menu that makes the poacher move to random directions. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forward
- Write the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize); Write the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forwardWrite the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forwardWrite the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The picture of the poacher is drew by e.Graphics.DrawImage(poacherImage, poacher.X, poacher.Y, tileSize, tileSize);arrow_forward
- Create a poacher class that has random x and y values when created, private set function for x and y values, and implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. Write it in C# WinFormsarrow_forwardHi, please solve this trying to follow this criteria. (use Keil) Abstract describing the requirements and goals of the assignment. List file with no errors or warnings. Brief description of your implementation design and code. Debugging screen shots for different scenarios with your reference and comments. Conclusionarrow_forwardCan you solve using iterative expansionarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





