93 lines
3.5 KiB
C#
93 lines
3.5 KiB
C#
|
namespace Problem1_CalebFontenot
|
|||
|
{
|
|||
|
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.listBox1 = new System.Windows.Forms.ListBox();
|
|||
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|||
|
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
|||
|
this.openButton = new System.Windows.Forms.Button();
|
|||
|
this.saveButton = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// listBox1
|
|||
|
//
|
|||
|
this.listBox1.FormattingEnabled = true;
|
|||
|
this.listBox1.ItemHeight = 15;
|
|||
|
this.listBox1.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.listBox1.Name = "listBox1";
|
|||
|
this.listBox1.Size = new System.Drawing.Size(175, 229);
|
|||
|
this.listBox1.TabIndex = 0;
|
|||
|
//
|
|||
|
// openFileDialog1
|
|||
|
//
|
|||
|
this.openFileDialog1.FileName = "openFileDialog1";
|
|||
|
//
|
|||
|
// openButton
|
|||
|
//
|
|||
|
this.openButton.Location = new System.Drawing.Point(12, 247);
|
|||
|
this.openButton.Name = "openButton";
|
|||
|
this.openButton.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.openButton.TabIndex = 1;
|
|||
|
this.openButton.Text = "Open File";
|
|||
|
this.openButton.UseVisualStyleBackColor = true;
|
|||
|
this.openButton.Click += new System.EventHandler(this.openButton_Click);
|
|||
|
//
|
|||
|
// saveButton
|
|||
|
//
|
|||
|
this.saveButton.Location = new System.Drawing.Point(112, 247);
|
|||
|
this.saveButton.Name = "saveButton";
|
|||
|
this.saveButton.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.saveButton.TabIndex = 2;
|
|||
|
this.saveButton.Text = "Save File";
|
|||
|
this.saveButton.UseVisualStyleBackColor = true;
|
|||
|
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(200, 288);
|
|||
|
this.Controls.Add(this.saveButton);
|
|||
|
this.Controls.Add(this.openButton);
|
|||
|
this.Controls.Add(this.listBox1);
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private ListBox listBox1;
|
|||
|
private OpenFileDialog openFileDialog1;
|
|||
|
private SaveFileDialog saveFileDialog1;
|
|||
|
private Button openButton;
|
|||
|
private Button saveButton;
|
|||
|
}
|
|||
|
}
|