Starting Out With Visual C# (5th Edition)
Starting Out With Visual C# (5th Edition)
5th Edition
ISBN: 9780135183519
Author: Tony Gaddis
Publisher: PEARSON
Question
Book Icon
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”.

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.

Form Design:

View the Form Design in IDE.

Starting Out With Visual C# (5th Edition), Chapter 10, Problem 2PP

Set the Form Control properties in Properties window as follows:

ObjectPropertySetting
Form1TextProgram 10_2
label1Text(Empty)
button1TextAccelerate
button2TextBrake
  • Add one label box control to the form from Toolbox.
  • Add two button controls to the form from Toolbox.

Blurred answer
11:52

Chapter 10 Solutions

Starting Out With Visual C# (5th Edition)

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
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education