Lab 2
This commit is contained in:
85
Student Sample Programs/Chap07/Change Array 2/Change Array 2/Form1.Designer.cs
generated
Normal file
85
Student Sample Programs/Chap07/Change Array 2/Change Array 2/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,85 @@
|
||||
namespace Change_Array_2
|
||||
{
|
||||
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.exitButton = new System.Windows.Forms.Button();
|
||||
this.goButton = new System.Windows.Forms.Button();
|
||||
this.outputListBox = new System.Windows.Forms.ListBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// exitButton
|
||||
//
|
||||
this.exitButton.Location = new System.Drawing.Point(152, 157);
|
||||
this.exitButton.Name = "exitButton";
|
||||
this.exitButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.exitButton.TabIndex = 5;
|
||||
this.exitButton.Text = "Exit";
|
||||
this.exitButton.UseVisualStyleBackColor = true;
|
||||
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||
//
|
||||
// goButton
|
||||
//
|
||||
this.goButton.Location = new System.Drawing.Point(71, 157);
|
||||
this.goButton.Name = "goButton";
|
||||
this.goButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.goButton.TabIndex = 4;
|
||||
this.goButton.Text = "Go";
|
||||
this.goButton.UseVisualStyleBackColor = true;
|
||||
this.goButton.Click += new System.EventHandler(this.goButton_Click);
|
||||
//
|
||||
// outputListBox
|
||||
//
|
||||
this.outputListBox.FormattingEnabled = true;
|
||||
this.outputListBox.Location = new System.Drawing.Point(33, 12);
|
||||
this.outputListBox.Name = "outputListBox";
|
||||
this.outputListBox.Size = new System.Drawing.Size(233, 134);
|
||||
this.outputListBox.TabIndex = 3;
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(299, 193);
|
||||
this.Controls.Add(this.exitButton);
|
||||
this.Controls.Add(this.goButton);
|
||||
this.Controls.Add(this.outputListBox);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Change Array Demo 2";
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button exitButton;
|
||||
private System.Windows.Forms.Button goButton;
|
||||
private System.Windows.Forms.ListBox outputListBox;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user