Pearson eText for Starting out with Visual C# -- Instant Access (Pearson+)
5th Edition
ISBN: 9780137502783
Author: Tony Gaddis
Publisher: PEARSON+
expand_more
expand_more
format_list_bulleted
Question
Chapter 10, Problem 2PP
Program Plan Intro
CAR Class
Program plan:
Design the form:
- Place one label box control on the form, and change its name and properties.
- Place two button controls 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 “Program10_2”.
- Define a class “Program”.
- Define a constructor for the class.
- Define required functions to run “Form1”.
- Define a class “Program”.
Form1.cs:
- Include the required libraries.
- Define namespace “Program10_2”.
- Define a class “Form1”.
- Create an object for Car derived class.
- In button1_Click() method,
- Assign the text box input to field of base class using derived class object.
- Display the retrieved fields in message box.
- In button2_Click() method,
- Assign the text box input to field of base class using derived class object.
- Display the retrieved fields in message box.
- Close the application.
Car.cs:
- Include the required libraries.
- Define namespace “Program10_2”.
- Define a base class “Car”.
- Declare the required fields.
- Define the parameter constructor.
- Define Year, Make, Model, and Speed property to use get and set methods.
- Define an Accelerate () method.
- Increment the value of speed by 5 and initialize it.
- Define a Brake () method.
- Check whether the value of speed is less than or equal to 0 or not. If yes, then initialize the value of speed as 0.
- Otherwise, decrement the value of speed by 5 and initialize it.
- Define a base class “Car”.
Form Design:
View the Form Design in IDE.
Set the Form Control properties in Properties window as follows:
Object | Property | Setting |
Form1 | Text | Program 10_2 |
label1 | Text | (Empty) |
button1 | Text | Accelerate |
button2 | Text | Brake |
- Add one label box control to the form from Toolbox.
- Add two button controls to the form from Toolbox.
Expert Solution & Answer
Learn your wayIncludes step-by-step video
schedule11:52
Chapter 10 Solutions
Pearson eText for Starting out with Visual C# -- Instant Access (Pearson+)
Ch. 10.1 - Prob. 10.1CPCh. 10.1 - Prob. 10.2CPCh. 10.1 - Prob. 10.3CPCh. 10.1 - Prob. 10.4CPCh. 10.1 - Prob. 10.5CPCh. 10.2 - Prob. 10.6CPCh. 10.2 - Prob. 10.7CPCh. 10.2 - Prob. 10.8CPCh. 10.2 - Prob. 10.9CPCh. 10.2 - Prob. 10.10CP
Ch. 10.3 - Prob. 10.11CPCh. 10.3 - Prob. 10.12CPCh. 10.3 - Prob. 10.13CPCh. 10.3 - Prob. 10.14CPCh. 10.3 - Prob. 10.15CPCh. 10.4 - Prob. 10.16CPCh. 10.4 - Prob. 10.17CPCh. 10.4 - Prob. 10.18CPCh. 10.5 - Prob. 10.19CPCh. 10.5 - Prob. 10.20CPCh. 10.5 - Prob. 10.21CPCh. 10.5 - Prob. 10.22CPCh. 10.5 - Prob. 10.23CPCh. 10.5 - Prob. 10.24CPCh. 10.6 - Prob. 10.25CPCh. 10.6 - Prob. 10.26CPCh. 10.6 - Prob. 10.27CPCh. 10.6 - Prob. 10.28CPCh. 10.6 - Prob. 10.29CPCh. 10.7 - Prob. 10.30CPCh. 10.7 - Prob. 10.31CPCh. 10.7 - Prob. 10.32CPCh. 10.7 - Prob. 10.33CPCh. 10 - Prob. 1MCCh. 10 - Prob. 2MCCh. 10 - Prob. 3MCCh. 10 - Prob. 4MCCh. 10 - Prob. 5MCCh. 10 - Prob. 6MCCh. 10 - Prob. 7MCCh. 10 - Prob. 8MCCh. 10 - Prob. 9MCCh. 10 - Prob. 10MCCh. 10 - Prob. 11MCCh. 10 - Prob. 12MCCh. 10 - Prob. 13MCCh. 10 - Prob. 14MCCh. 10 - Prob. 15MCCh. 10 - Prob. 16MCCh. 10 - Prob. 17MCCh. 10 - Prob. 18MCCh. 10 - Prob. 19MCCh. 10 - Prob. 20MCCh. 10 - Prob. 21MCCh. 10 - Prob. 22MCCh. 10 - Prob. 1TFCh. 10 - Prob. 2TFCh. 10 - Prob. 3TFCh. 10 - Prob. 4TFCh. 10 - Prob. 5TFCh. 10 - Prob. 6TFCh. 10 - Prob. 7TFCh. 10 - Prob. 8TFCh. 10 - Prob. 9TFCh. 10 - Prob. 10TFCh. 10 - Prob. 11TFCh. 10 - Prob. 12TFCh. 10 - Prob. 13TFCh. 10 - Prob. 14TFCh. 10 - Prob. 15TFCh. 10 - Prob. 16TFCh. 10 - Prob. 17TFCh. 10 - Prob. 18TFCh. 10 - Prob. 1SACh. 10 - Prob. 2SACh. 10 - Prob. 3SACh. 10 - Prob. 4SACh. 10 - Prob. 5SACh. 10 - Prob. 6SACh. 10 - Prob. 7SACh. 10 - Prob. 8SACh. 10 - Prob. 9SACh. 10 - Prob. 10SACh. 10 - Prob. 11SACh. 10 - Prob. 12SACh. 10 - Prob. 13SACh. 10 - Prob. 14SACh. 10 - Prob. 15SACh. 10 - Prob. 16SACh. 10 - Prob. 17SACh. 10 - Prob. 18SACh. 10 - Prob. 1AWCh. 10 - Prob. 2AWCh. 10 - Prob. 3AWCh. 10 - Prob. 4AWCh. 10 - Prob. 5AWCh. 10 - Prob. 6AWCh. 10 - Prob. 1PPCh. 10 - Prob. 2PPCh. 10 - Prob. 3PPCh. 10 - Prob. 4PPCh. 10 - Prob. 5PPCh. 10 - Prob. 6PPCh. 10 - Prob. 7PPCh. 10 - Prob. 8PP
Knowledge Booster
Recommended textbooks for you
- 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
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education