namespace sharpsyntax { partial class MainWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow)); this.panel1 = new System.Windows.Forms.Panel(); this.syntaxTextBox = new sharpsyntax.SyntaxTextBox(); this.toolStrip = new System.Windows.Forms.ToolStrip(); this.cboLanguages = new System.Windows.Forms.ToolStripComboBox(); this.addButton = new System.Windows.Forms.ToolStripButton(); this.editButton = new System.Windows.Forms.ToolStripButton(); this.deleteButton = new System.Windows.Forms.ToolStripButton(); this.statusStrip = new System.Windows.Forms.StatusStrip(); this.panel1.SuspendLayout(); this.toolStrip.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.syntaxTextBox); this.panel1.Controls.Add(this.toolStrip); this.panel1.Controls.Add(this.statusStrip); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(667, 677); this.panel1.TabIndex = 0; // // syntaxTextBox // this.syntaxTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.syntaxTextBox.Language = null; this.syntaxTextBox.Location = new System.Drawing.Point(0, 25); this.syntaxTextBox.Name = "syntaxTextBox"; this.syntaxTextBox.Size = new System.Drawing.Size(667, 630); this.syntaxTextBox.TabIndex = 2; this.syntaxTextBox.Text = ""; // // toolStrip // this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cboLanguages, this.addButton, this.editButton, this.deleteButton}); this.toolStrip.Location = new System.Drawing.Point(0, 0); this.toolStrip.Name = "toolStrip"; this.toolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; this.toolStrip.Size = new System.Drawing.Size(667, 25); this.toolStrip.TabIndex = 1; this.toolStrip.Text = "toolStrip1"; // // cboLanguages // this.cboLanguages.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboLanguages.Name = "cboLanguages"; this.cboLanguages.Size = new System.Drawing.Size(121, 25); this.cboLanguages.SelectedIndexChanged += new System.EventHandler(this.languageComboBox_SelectedIndexChanged); // // addButton // this.addButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.addButton.Image = ((System.Drawing.Image)(resources.GetObject("addButton.Image"))); this.addButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.addButton.Name = "addButton"; this.addButton.Size = new System.Drawing.Size(23, 22); this.addButton.Text = "toolStripButton1"; this.addButton.Click += new System.EventHandler(this.addButton_Click); // // editButton // this.editButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.editButton.Image = ((System.Drawing.Image)(resources.GetObject("editButton.Image"))); this.editButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.editButton.Name = "editButton"; this.editButton.Size = new System.Drawing.Size(23, 22); this.editButton.Text = "toolStripButton2"; this.editButton.Click += new System.EventHandler(this.editButton_Click); // // deleteButton // this.deleteButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.deleteButton.Image = ((System.Drawing.Image)(resources.GetObject("deleteButton.Image"))); this.deleteButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.deleteButton.Name = "deleteButton"; this.deleteButton.Size = new System.Drawing.Size(23, 22); this.deleteButton.Text = "toolStripButton3"; this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click); // // statusStrip // this.statusStrip.Location = new System.Drawing.Point(0, 655); this.statusStrip.Name = "statusStrip"; this.statusStrip.Size = new System.Drawing.Size(667, 22); this.statusStrip.TabIndex = 0; this.statusStrip.Text = "statusStrip1"; // // MainWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(667, 677); this.Controls.Add(this.panel1); this.Name = "MainWindow"; this.Text = "sharpsyntax"; this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.toolStrip.ResumeLayout(false); this.toolStrip.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel panel1; private System.Windows.Forms.ToolStrip toolStrip; private System.Windows.Forms.ToolStripComboBox cboLanguages; private System.Windows.Forms.StatusStrip statusStrip; private SyntaxTextBox syntaxTextBox; private System.Windows.Forms.ToolStripButton addButton; private System.Windows.Forms.ToolStripButton editButton; private System.Windows.Forms.ToolStripButton deleteButton; } }