diff options
| author | Michael <[email protected]> | 2017-02-05 10:56:48 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-05 10:56:48 -0500 |
| commit | 19b13528f6e4ecbef8aaca92d6bdcf7d23d42838 (patch) | |
| tree | d12032138c15bd0e891856c6f5ead9cc86428a46 /ShiftOS.MFSProfiler/FileCreator.Designer.cs | |
| parent | b1923154095df7b26d3e5263b5219f38f7c58c38 (diff) | |
| download | shiftos_thereturn-19b13528f6e4ecbef8aaca92d6bdcf7d23d42838.tar.gz shiftos_thereturn-19b13528f6e4ecbef8aaca92d6bdcf7d23d42838.tar.bz2 shiftos_thereturn-19b13528f6e4ecbef8aaca92d6bdcf7d23d42838.zip | |
Server now FULLY encrypts saves
Diffstat (limited to 'ShiftOS.MFSProfiler/FileCreator.Designer.cs')
| -rw-r--r-- | ShiftOS.MFSProfiler/FileCreator.Designer.cs | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/ShiftOS.MFSProfiler/FileCreator.Designer.cs b/ShiftOS.MFSProfiler/FileCreator.Designer.cs new file mode 100644 index 0000000..09761c6 --- /dev/null +++ b/ShiftOS.MFSProfiler/FileCreator.Designer.cs @@ -0,0 +1,108 @@ +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; + } +}
\ No newline at end of file |
