Lab 2
This commit is contained in:
22
Student Sample Programs/Chap09/Car List/Car List.sln
Normal file
22
Student Sample Programs/Chap09/Car List/Car List.sln
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27703.2042
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Car List", "Car List\Car List.csproj", "{94CC2A26-7FB5-4F6E-BCCA-2E1404F286EC}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{94CC2A26-7FB5-4F6E-BCCA-2E1404F286EC}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{94CC2A26-7FB5-4F6E-BCCA-2E1404F286EC}.Debug|x86.Build.0 = Debug|x86
|
||||
{94CC2A26-7FB5-4F6E-BCCA-2E1404F286EC}.Release|x86.ActiveCfg = Release|x86
|
||||
{94CC2A26-7FB5-4F6E-BCCA-2E1404F286EC}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{94CC2A26-7FB5-4F6E-BCCA-2E1404F286EC}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Car_List</RootNamespace>
|
||||
<AssemblyName>Car List</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Form1.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Form1.Designer.cs">
|
||||
<DependentUpon>Form1.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<EmbeddedResource Include="Form1.resx">
|
||||
<DependentUpon>Form1.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<None Include="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
<Compile Include="Properties\Settings.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
166
Student Sample Programs/Chap09/Car List/Car List/Form1.Designer.cs
generated
Normal file
166
Student Sample Programs/Chap09/Car List/Car List/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,166 @@
|
||||
namespace Car_List
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.carInfoGroupBox = new System.Windows.Forms.GroupBox();
|
||||
this.makePromptLabel = new System.Windows.Forms.Label();
|
||||
this.yearPromptLabel = new System.Windows.Forms.Label();
|
||||
this.mileagePromptLabel = new System.Windows.Forms.Label();
|
||||
this.makeTextBox = new System.Windows.Forms.TextBox();
|
||||
this.yearTextBox = new System.Windows.Forms.TextBox();
|
||||
this.mileageTextBox = new System.Windows.Forms.TextBox();
|
||||
this.addButton = new System.Windows.Forms.Button();
|
||||
this.carListBox = new System.Windows.Forms.ListBox();
|
||||
this.displayButton = new System.Windows.Forms.Button();
|
||||
this.carInfoGroupBox.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// carInfoGroupBox
|
||||
//
|
||||
this.carInfoGroupBox.Controls.Add(this.mileageTextBox);
|
||||
this.carInfoGroupBox.Controls.Add(this.yearTextBox);
|
||||
this.carInfoGroupBox.Controls.Add(this.makeTextBox);
|
||||
this.carInfoGroupBox.Controls.Add(this.mileagePromptLabel);
|
||||
this.carInfoGroupBox.Controls.Add(this.yearPromptLabel);
|
||||
this.carInfoGroupBox.Controls.Add(this.makePromptLabel);
|
||||
this.carInfoGroupBox.Location = new System.Drawing.Point(12, 17);
|
||||
this.carInfoGroupBox.Name = "carInfoGroupBox";
|
||||
this.carInfoGroupBox.Size = new System.Drawing.Size(200, 105);
|
||||
this.carInfoGroupBox.TabIndex = 0;
|
||||
this.carInfoGroupBox.TabStop = false;
|
||||
this.carInfoGroupBox.Text = "Car Information";
|
||||
//
|
||||
// makePromptLabel
|
||||
//
|
||||
this.makePromptLabel.AutoSize = true;
|
||||
this.makePromptLabel.Location = new System.Drawing.Point(34, 22);
|
||||
this.makePromptLabel.Name = "makePromptLabel";
|
||||
this.makePromptLabel.Size = new System.Drawing.Size(37, 13);
|
||||
this.makePromptLabel.TabIndex = 0;
|
||||
this.makePromptLabel.Text = "Make:";
|
||||
//
|
||||
// yearPromptLabel
|
||||
//
|
||||
this.yearPromptLabel.AutoSize = true;
|
||||
this.yearPromptLabel.Location = new System.Drawing.Point(34, 48);
|
||||
this.yearPromptLabel.Name = "yearPromptLabel";
|
||||
this.yearPromptLabel.Size = new System.Drawing.Size(32, 13);
|
||||
this.yearPromptLabel.TabIndex = 1;
|
||||
this.yearPromptLabel.Text = "Year:";
|
||||
//
|
||||
// mileagePromptLabel
|
||||
//
|
||||
this.mileagePromptLabel.AutoSize = true;
|
||||
this.mileagePromptLabel.Location = new System.Drawing.Point(19, 74);
|
||||
this.mileagePromptLabel.Name = "mileagePromptLabel";
|
||||
this.mileagePromptLabel.Size = new System.Drawing.Size(47, 13);
|
||||
this.mileagePromptLabel.TabIndex = 2;
|
||||
this.mileagePromptLabel.Text = "Mileage:";
|
||||
//
|
||||
// makeTextBox
|
||||
//
|
||||
this.makeTextBox.Location = new System.Drawing.Point(81, 19);
|
||||
this.makeTextBox.Name = "makeTextBox";
|
||||
this.makeTextBox.Size = new System.Drawing.Size(100, 20);
|
||||
this.makeTextBox.TabIndex = 3;
|
||||
//
|
||||
// yearTextBox
|
||||
//
|
||||
this.yearTextBox.Location = new System.Drawing.Point(81, 46);
|
||||
this.yearTextBox.Name = "yearTextBox";
|
||||
this.yearTextBox.Size = new System.Drawing.Size(100, 20);
|
||||
this.yearTextBox.TabIndex = 4;
|
||||
//
|
||||
// mileageTextBox
|
||||
//
|
||||
this.mileageTextBox.Location = new System.Drawing.Point(81, 72);
|
||||
this.mileageTextBox.Name = "mileageTextBox";
|
||||
this.mileageTextBox.Size = new System.Drawing.Size(100, 20);
|
||||
this.mileageTextBox.TabIndex = 5;
|
||||
//
|
||||
// addButton
|
||||
//
|
||||
this.addButton.Location = new System.Drawing.Point(75, 142);
|
||||
this.addButton.Name = "addButton";
|
||||
this.addButton.Size = new System.Drawing.Size(75, 35);
|
||||
this.addButton.TabIndex = 1;
|
||||
this.addButton.Text = "Add Car to List";
|
||||
this.addButton.UseVisualStyleBackColor = true;
|
||||
this.addButton.Click += new System.EventHandler(this.addButton_Click);
|
||||
//
|
||||
// carListBox
|
||||
//
|
||||
this.carListBox.FormattingEnabled = true;
|
||||
this.carListBox.Location = new System.Drawing.Point(238, 27);
|
||||
this.carListBox.Name = "carListBox";
|
||||
this.carListBox.Size = new System.Drawing.Size(207, 95);
|
||||
this.carListBox.TabIndex = 2;
|
||||
//
|
||||
// displayButton
|
||||
//
|
||||
this.displayButton.Location = new System.Drawing.Point(304, 142);
|
||||
this.displayButton.Name = "displayButton";
|
||||
this.displayButton.Size = new System.Drawing.Size(75, 35);
|
||||
this.displayButton.TabIndex = 3;
|
||||
this.displayButton.Text = "Display Car List";
|
||||
this.displayButton.UseVisualStyleBackColor = true;
|
||||
this.displayButton.Click += new System.EventHandler(this.displayButton_Click);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(457, 194);
|
||||
this.Controls.Add(this.displayButton);
|
||||
this.Controls.Add(this.carListBox);
|
||||
this.Controls.Add(this.addButton);
|
||||
this.Controls.Add(this.carInfoGroupBox);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Car List";
|
||||
this.carInfoGroupBox.ResumeLayout(false);
|
||||
this.carInfoGroupBox.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.GroupBox carInfoGroupBox;
|
||||
private System.Windows.Forms.TextBox mileageTextBox;
|
||||
private System.Windows.Forms.TextBox yearTextBox;
|
||||
private System.Windows.Forms.TextBox makeTextBox;
|
||||
private System.Windows.Forms.Label mileagePromptLabel;
|
||||
private System.Windows.Forms.Label yearPromptLabel;
|
||||
private System.Windows.Forms.Label makePromptLabel;
|
||||
private System.Windows.Forms.Button addButton;
|
||||
private System.Windows.Forms.ListBox carListBox;
|
||||
private System.Windows.Forms.Button displayButton;
|
||||
}
|
||||
}
|
||||
|
89
Student Sample Programs/Chap09/Car List/Car List/Form1.cs
Normal file
89
Student Sample Programs/Chap09/Car List/Car List/Form1.cs
Normal file
@@ -0,0 +1,89 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Car_List
|
||||
{
|
||||
struct Automobile
|
||||
{
|
||||
public string make;
|
||||
public int year;
|
||||
public double mileage;
|
||||
}
|
||||
|
||||
public partial class Form1 : Form
|
||||
{
|
||||
// Create a List as a field.
|
||||
private List<Automobile> carList = new List<Automobile>();
|
||||
|
||||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
// The GetData method gets the data entered
|
||||
// by the user and assigns it to the parameter
|
||||
// object's fields.
|
||||
private void GetData(ref Automobile auto)
|
||||
{
|
||||
try
|
||||
{
|
||||
// Get the data from the TextBoxes.
|
||||
auto.make = makeTextBox.Text;
|
||||
auto.year = int.Parse(yearTextBox.Text);
|
||||
auto.mileage = double.Parse(mileageTextBox.Text);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
// Display the exception message.
|
||||
MessageBox.Show(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
private void addButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
// Create an instance of the Automobile structure.
|
||||
Automobile car = new Automobile();
|
||||
|
||||
// Get the data entered by the user.
|
||||
GetData(ref car);
|
||||
|
||||
// Add the car object to the List.
|
||||
carList.Add(car);
|
||||
|
||||
// Clear the TextBoxes.
|
||||
makeTextBox.Clear();
|
||||
yearTextBox.Clear();
|
||||
mileageTextBox.Clear();
|
||||
|
||||
// Reset the focus.
|
||||
makeTextBox.Focus();
|
||||
}
|
||||
|
||||
private void displayButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
// Declare a string to hold a line of output.
|
||||
string output;
|
||||
|
||||
// Clear the ListBox's current contents.
|
||||
carListBox.Items.Clear();
|
||||
|
||||
// Display the car info in the ListBox.
|
||||
foreach (Automobile aCar in carList)
|
||||
{
|
||||
// Make a line of output.
|
||||
output = aCar.year + " " + aCar.make +
|
||||
" with " + aCar.mileage + " miles.";
|
||||
|
||||
// Add the line of output to the ListBox.
|
||||
carListBox.Items.Add(output);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
120
Student Sample Programs/Chap09/Car List/Car List/Form1.resx
Normal file
120
Student Sample Programs/Chap09/Car List/Car List/Form1.resx
Normal file
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
21
Student Sample Programs/Chap09/Car List/Car List/Program.cs
Normal file
21
Student Sample Programs/Chap09/Car List/Car List/Program.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Car_List
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Car List")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Microsoft")]
|
||||
[assembly: AssemblyProduct("Car List")]
|
||||
[assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("5eae450f-7b1f-4048-9ad2-522bdd9f6afc")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
71
Student Sample Programs/Chap09/Car List/Car List/Properties/Resources.Designer.cs
generated
Normal file
71
Student Sample Programs/Chap09/Car List/Car List/Properties/Resources.Designer.cs
generated
Normal file
@@ -0,0 +1,71 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.1
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Car_List.Properties
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources
|
||||
{
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager
|
||||
{
|
||||
get
|
||||
{
|
||||
if ((resourceMan == null))
|
||||
{
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Car_List.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture
|
||||
{
|
||||
get
|
||||
{
|
||||
return resourceCulture;
|
||||
}
|
||||
set
|
||||
{
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
30
Student Sample Programs/Chap09/Car List/Car List/Properties/Settings.Designer.cs
generated
Normal file
30
Student Sample Programs/Chap09/Car List/Car List/Properties/Settings.Designer.cs
generated
Normal file
@@ -0,0 +1,30 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.1
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Car_List.Properties
|
||||
{
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||
{
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default
|
||||
{
|
||||
get
|
||||
{
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
</assembly>
|
@@ -0,0 +1,25 @@
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\bin\Debug\Car List.exe
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\bin\Debug\Car List.pdb
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\ResolveAssemblyReference.cache
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car_List.Form1.resources
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car_List.Properties.Resources.resources
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\GenerateResource.read.1.tlog
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\GenerateResource.write.1.tlog
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.exe
|
||||
C:\Users\Tony\Documents\Books\C#\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.pdb
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.exe
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.pdb
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\bin\Debug\Car List.exe
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\bin\Debug\Car List.pdb
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.csprojResolveAssemblyReference.cache
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car_List.Form1.resources
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car_List.Properties.Resources.resources
|
||||
C:\Users\Tony\Documents\Books\C#\3rd Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.csproj.GenerateResource.Cache
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.exe
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.pdb
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\bin\Debug\Car List.exe
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\bin\Debug\Car List.pdb
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.csprojResolveAssemblyReference.cache
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car_List.Form1.resources
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car_List.Properties.Resources.resources
|
||||
C:\Users\Tony\Documents\Books\C#\4th Edition\Student Sample Programs\Chap08\Car List\Car List\obj\x86\Debug\Car List.csproj.GenerateResource.Cache
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user