mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 10:12:16 +00:00
108 lines
4.1 KiB
C#
108 lines
4.1 KiB
C#
|
namespace ShiftOS.MFSProfiler
|
|||
|
{
|
|||
|
partial class FileCreator
|
|||
|
{
|
|||
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|||
|
this.txtfname = new System.Windows.Forms.TextBox();
|
|||
|
this.txtcontents = new System.Windows.Forms.TextBox();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(13, 13);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(55, 13);
|
|||
|
this.label1.TabIndex = 0;
|
|||
|
this.label1.Text = "File name:";
|
|||
|
//
|
|||
|
// txtfname
|
|||
|
//
|
|||
|
this.txtfname.Location = new System.Drawing.Point(16, 30);
|
|||
|
this.txtfname.Name = "txtfname";
|
|||
|
this.txtfname.Size = new System.Drawing.Size(416, 20);
|
|||
|
this.txtfname.TabIndex = 1;
|
|||
|
//
|
|||
|
// txtcontents
|
|||
|
//
|
|||
|
this.txtcontents.Location = new System.Drawing.Point(16, 78);
|
|||
|
this.txtcontents.Multiline = true;
|
|||
|
this.txtcontents.Name = "txtcontents";
|
|||
|
this.txtcontents.Size = new System.Drawing.Size(416, 200);
|
|||
|
this.txtcontents.TabIndex = 3;
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(13, 61);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(52, 13);
|
|||
|
this.label2.TabIndex = 2;
|
|||
|
this.label2.Text = "Contents:";
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(357, 284);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.button1.TabIndex = 4;
|
|||
|
this.button1.Text = "OK";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
//
|
|||
|
// FileCreator
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(444, 312);
|
|||
|
this.Controls.Add(this.button1);
|
|||
|
this.Controls.Add(this.txtcontents);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Controls.Add(this.txtfname);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.Name = "FileCreator";
|
|||
|
this.Text = "FileCreator";
|
|||
|
this.Load += new System.EventHandler(this.FileCreator_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.TextBox txtfname;
|
|||
|
private System.Windows.Forms.TextBox txtcontents;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
}
|
|||
|
}
|