First nice version

This commit is contained in:
JustArchi
2016-03-20 08:29:27 +01:00
parent b642f4b240
commit f77cb6d33b
9 changed files with 242 additions and 83 deletions

View File

@@ -28,9 +28,6 @@
this.FileMenu = new System.Windows.Forms.ToolStripMenuItem();
this.FileMenuHelp = new System.Windows.Forms.ToolStripMenuItem();
this.FileMenuExit = new System.Windows.Forms.ToolStripMenuItem();
this.BotMenu = new System.Windows.Forms.ToolStripMenuItem();
this.BotMenuNew = new System.Windows.Forms.ToolStripMenuItem();
this.BotMenuDelete = new System.Windows.Forms.ToolStripMenuItem();
this.MainTab = new System.Windows.Forms.TabControl();
this.MenuPanel.SuspendLayout();
this.SuspendLayout();
@@ -38,11 +35,11 @@
// MenuPanel
//
this.MenuPanel.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FileMenu,
this.BotMenu});
this.FileMenu});
this.MenuPanel.Location = new System.Drawing.Point(0, 0);
this.MenuPanel.Name = "MenuPanel";
this.MenuPanel.Size = new System.Drawing.Size(784, 24);
this.MenuPanel.Padding = new System.Windows.Forms.Padding(8, 3, 0, 3);
this.MenuPanel.Size = new System.Drawing.Size(780, 25);
this.MenuPanel.TabIndex = 0;
this.MenuPanel.Text = "menuStrip1";
//
@@ -52,67 +49,56 @@
this.FileMenuHelp,
this.FileMenuExit});
this.FileMenu.Name = "FileMenu";
this.FileMenu.Size = new System.Drawing.Size(37, 20);
this.FileMenu.Size = new System.Drawing.Size(37, 19);
this.FileMenu.Text = "File";
//
// FileMenuHelp
//
this.FileMenuHelp.Name = "FileMenuHelp";
this.FileMenuHelp.Size = new System.Drawing.Size(99, 22);
this.FileMenuHelp.Size = new System.Drawing.Size(152, 22);
this.FileMenuHelp.Text = "Help";
this.FileMenuHelp.Click += new System.EventHandler(this.FileMenuHelp_Click);
//
// FileMenuExit
//
this.FileMenuExit.Name = "FileMenuExit";
this.FileMenuExit.Size = new System.Drawing.Size(99, 22);
this.FileMenuExit.Size = new System.Drawing.Size(152, 22);
this.FileMenuExit.Text = "Exit";
this.FileMenuExit.Click += new System.EventHandler(this.FileMenuExit_Click);
//
// BotMenu
//
this.BotMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.BotMenuNew,
this.BotMenuDelete});
this.BotMenu.Name = "BotMenu";
this.BotMenu.Size = new System.Drawing.Size(37, 20);
this.BotMenu.Text = "Bot";
//
// BotMenuNew
//
this.BotMenuNew.Name = "BotMenuNew";
this.BotMenuNew.Size = new System.Drawing.Size(107, 22);
this.BotMenuNew.Text = "New";
this.BotMenuNew.Click += new System.EventHandler(this.BotMenuNew_Click);
//
// BotMenuDelete
//
this.BotMenuDelete.Name = "BotMenuDelete";
this.BotMenuDelete.Size = new System.Drawing.Size(107, 22);
this.BotMenuDelete.Text = "Delete";
this.BotMenuDelete.Click += new System.EventHandler(this.BotMenuDelete_Click);
//
// MainTab
//
this.MainTab.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.MainTab.Location = new System.Drawing.Point(12, 27);
this.MainTab.HotTrack = true;
this.MainTab.Location = new System.Drawing.Point(16, 33);
this.MainTab.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.MainTab.Multiline = true;
this.MainTab.Name = "MainTab";
this.MainTab.SelectedIndex = 0;
this.MainTab.Size = new System.Drawing.Size(760, 522);
this.MainTab.Size = new System.Drawing.Size(748, 509);
this.MainTab.TabIndex = 1;
this.MainTab.Selected += new System.Windows.Forms.TabControlEventHandler(this.MainTab_Selected);
this.MainTab.Deselecting += new System.Windows.Forms.TabControlCancelEventHandler(this.MainTab_Deselecting);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 561);
this.AutoScroll = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(780, 557);
this.Controls.Add(this.MainTab);
this.Controls.Add(this.MenuPanel);
this.DoubleBuffered = true;
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.MenuPanel;
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ASF Config Generator";
this.Load += new System.EventHandler(this.MainForm_Load);
this.MenuPanel.ResumeLayout(false);
@@ -125,9 +111,6 @@
#endregion
private System.Windows.Forms.MenuStrip MenuPanel;
private System.Windows.Forms.ToolStripMenuItem BotMenu;
private System.Windows.Forms.ToolStripMenuItem BotMenuNew;
private System.Windows.Forms.ToolStripMenuItem BotMenuDelete;
private System.Windows.Forms.TabControl MainTab;
private System.Windows.Forms.ToolStripMenuItem FileMenu;
private System.Windows.Forms.ToolStripMenuItem FileMenuHelp;