diff options
| author | william341 <[email protected]> | 2017-06-24 10:53:22 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-06-24 10:53:22 -0700 |
| commit | bae34710cf86240b2744196c4b95e569fb161c90 (patch) | |
| tree | d5ff99e5cc8f3db8a9236b247886866601b915b9 /ShiftOS.MFSProfiler/Main.Designer.cs | |
| parent | b4b19e7a4d203b58537f5b98214296ab52c49b2d (diff) | |
| parent | 1661f9a5bd46dbd7d2586787c55bfc407c027629 (diff) | |
| download | shiftos_thereturn-bae34710cf86240b2744196c4b95e569fb161c90.tar.gz shiftos_thereturn-bae34710cf86240b2744196c4b95e569fb161c90.tar.bz2 shiftos_thereturn-bae34710cf86240b2744196c4b95e569fb161c90.zip | |
Merge pull request #5 from shiftos-game/master
merge
Diffstat (limited to 'ShiftOS.MFSProfiler/Main.Designer.cs')
| -rw-r--r-- | ShiftOS.MFSProfiler/Main.Designer.cs | 45 |
1 files changed, 41 insertions, 4 deletions
diff --git a/ShiftOS.MFSProfiler/Main.Designer.cs b/ShiftOS.MFSProfiler/Main.Designer.cs index 83e9b72..d97c5b9 100644 --- a/ShiftOS.MFSProfiler/Main.Designer.cs +++ b/ShiftOS.MFSProfiler/Main.Designer.cs @@ -56,6 +56,7 @@ namespace ShiftOS.MFSProfiler this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.tvfiles = new System.Windows.Forms.TreeView(); this.panel1 = new System.Windows.Forms.Panel(); + this.button2 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button(); this.pnlfileinfo = new System.Windows.Forms.Panel(); this.groupBox2 = new System.Windows.Forms.GroupBox(); @@ -71,6 +72,8 @@ namespace ShiftOS.MFSProfiler this.newFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newDirectoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.exportToMFSFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.button3 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); @@ -115,6 +118,8 @@ namespace ShiftOS.MFSProfiler // // panel1 // + this.panel1.Controls.Add(this.button3); + this.panel1.Controls.Add(this.button2); this.panel1.Controls.Add(this.button1); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); @@ -122,6 +127,16 @@ namespace ShiftOS.MFSProfiler this.panel1.Size = new System.Drawing.Size(246, 30); this.panel1.TabIndex = 1; // + // button2 + // + this.button2.Location = new System.Drawing.Point(86, 4); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(75, 23); + this.button2.TabIndex = 1; + this.button2.Text = "Create New"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // // button1 // this.button1.Location = new System.Drawing.Point(4, 4); @@ -237,14 +252,15 @@ namespace ShiftOS.MFSProfiler this.ctxfileoptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newFileToolStripMenuItem, this.newDirectoryToolStripMenuItem, - this.deleteToolStripMenuItem}); + this.deleteToolStripMenuItem, + this.exportToMFSFileToolStripMenuItem}); this.ctxfileoptions.Name = "ctxfileoptions"; - this.ctxfileoptions.Size = new System.Drawing.Size(153, 92); + this.ctxfileoptions.Size = new System.Drawing.Size(171, 92); // // newFileToolStripMenuItem // this.newFileToolStripMenuItem.Name = "newFileToolStripMenuItem"; - this.newFileToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.newFileToolStripMenuItem.Size = new System.Drawing.Size(148, 22); this.newFileToolStripMenuItem.Text = "New file"; this.newFileToolStripMenuItem.Click += new System.EventHandler(this.newFileToolStripMenuItem_Click); // @@ -253,13 +269,31 @@ namespace ShiftOS.MFSProfiler this.newDirectoryToolStripMenuItem.Name = "newDirectoryToolStripMenuItem"; this.newDirectoryToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.newDirectoryToolStripMenuItem.Text = "New directory"; + this.newDirectoryToolStripMenuItem.Click += new System.EventHandler(this.newDirectoryToolStripMenuItem_Click); // // deleteToolStripMenuItem // this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; - this.deleteToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.deleteToolStripMenuItem.Size = new System.Drawing.Size(148, 22); this.deleteToolStripMenuItem.Text = "Delete"; // + // exportToMFSFileToolStripMenuItem + // + this.exportToMFSFileToolStripMenuItem.Name = "exportToMFSFileToolStripMenuItem"; + this.exportToMFSFileToolStripMenuItem.Size = new System.Drawing.Size(170, 22); + this.exportToMFSFileToolStripMenuItem.Text = "Export To MFS File"; + this.exportToMFSFileToolStripMenuItem.Click += new System.EventHandler(this.exportToMFSFileToolStripMenuItem_Click); + // + // button3 + // + this.button3.Location = new System.Drawing.Point(167, 3); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(75, 23); + this.button3.TabIndex = 2; + this.button3.Text = "From Dir"; + this.button3.UseVisualStyleBackColor = true; + this.button3.Click += new System.EventHandler(this.button3_Click); + // // Main // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -306,6 +340,9 @@ namespace ShiftOS.MFSProfiler private System.Windows.Forms.ToolStripMenuItem newFileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem newDirectoryToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.ToolStripMenuItem exportToMFSFileToolStripMenuItem; + private System.Windows.Forms.Button button3; } } |
