// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) namespace ICSharpCode.NRefactory.Demo { partial class CSDemo { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the control. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.csharpCodeTextBox = new System.Windows.Forms.TextBox(); this.resolveButton = new System.Windows.Forms.Button(); this.csharpTreeView = new System.Windows.Forms.TreeView(); this.csharpGenerateCodeButton = new System.Windows.Forms.Button(); this.csharpParseButton = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.csharpCodeTextBox); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.resolveButton); this.splitContainer1.Panel2.Controls.Add(this.csharpTreeView); this.splitContainer1.Panel2.Controls.Add(this.csharpGenerateCodeButton); this.splitContainer1.Panel2.Controls.Add(this.csharpParseButton); this.splitContainer1.Size = new System.Drawing.Size(475, 406); this.splitContainer1.SplitterDistance = 178; this.splitContainer1.TabIndex = 1; // // csharpCodeTextBox // this.csharpCodeTextBox.AcceptsReturn = true; this.csharpCodeTextBox.AcceptsTab = true; this.csharpCodeTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.csharpCodeTextBox.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.csharpCodeTextBox.HideSelection = false; this.csharpCodeTextBox.Location = new System.Drawing.Point(0, 0); this.csharpCodeTextBox.Multiline = true; this.csharpCodeTextBox.Name = "csharpCodeTextBox"; this.csharpCodeTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.csharpCodeTextBox.Size = new System.Drawing.Size(475, 178); this.csharpCodeTextBox.TabIndex = 0; this.csharpCodeTextBox.Text = "using System;\r\nclass Test\r\n{\r\n public void Main(string[] args)\r\n {\r\n " + " Console.WriteLine(\"Hello, World\");\r\n }\r\n}"; this.csharpCodeTextBox.WordWrap = false; this.csharpCodeTextBox.TextChanged += new System.EventHandler(this.CsharpCodeTextBoxTextChanged); // // resolveButton // this.resolveButton.Anchor = System.Windows.Forms.AnchorStyles.Top; this.resolveButton.Location = new System.Drawing.Point(187, 3); this.resolveButton.Name = "resolveButton"; this.resolveButton.Size = new System.Drawing.Size(100, 23); this.resolveButton.TabIndex = 3; this.resolveButton.Text = "Resolve"; this.resolveButton.UseVisualStyleBackColor = true; this.resolveButton.Click += new System.EventHandler(this.ResolveButtonClick); // // csharpTreeView // this.csharpTreeView.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.csharpTreeView.HideSelection = false; this.csharpTreeView.Location = new System.Drawing.Point(3, 32); this.csharpTreeView.Name = "csharpTreeView"; this.csharpTreeView.Size = new System.Drawing.Size(467, 189); this.csharpTreeView.TabIndex = 2; this.csharpTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.CSharpTreeViewAfterSelect); // // csharpGenerateCodeButton // this.csharpGenerateCodeButton.Anchor = System.Windows.Forms.AnchorStyles.Top; this.csharpGenerateCodeButton.Location = new System.Drawing.Point(293, 2); this.csharpGenerateCodeButton.Name = "csharpGenerateCodeButton"; this.csharpGenerateCodeButton.Size = new System.Drawing.Size(100, 23); this.csharpGenerateCodeButton.TabIndex = 1; this.csharpGenerateCodeButton.Text = "Generate"; this.csharpGenerateCodeButton.UseVisualStyleBackColor = true; this.csharpGenerateCodeButton.Click += new System.EventHandler(this.CSharpGenerateCodeButtonClick); // // csharpParseButton // this.csharpParseButton.Anchor = System.Windows.Forms.AnchorStyles.Top; this.csharpParseButton.Location = new System.Drawing.Point(81, 3); this.csharpParseButton.Name = "csharpParseButton"; this.csharpParseButton.Size = new System.Drawing.Size(100, 23); this.csharpParseButton.TabIndex = 0; this.csharpParseButton.Text = "Parse"; this.csharpParseButton.UseVisualStyleBackColor = true; this.csharpParseButton.Click += new System.EventHandler(this.CSharpParseButtonClick); // // CSDemo // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.splitContainer1); this.Name = "CSDemo"; this.Size = new System.Drawing.Size(475, 406); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel1.PerformLayout(); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); } private System.Windows.Forms.Button csharpParseButton; private System.Windows.Forms.Button csharpGenerateCodeButton; private System.Windows.Forms.TreeView csharpTreeView; private System.Windows.Forms.Button resolveButton; private System.Windows.Forms.TextBox csharpCodeTextBox; private System.Windows.Forms.SplitContainer splitContainer1; } }