/* * Created by SharpDevelop. * User: Daniel * Date: 6/22/2012 * Time: 17:08 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ namespace ICSharpCode.NRefactory.Demo { partial class SemanticTreeDialog { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the form. /// /// 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.cancelButton = new System.Windows.Forms.Button(); this.treeView = new System.Windows.Forms.TreeView(); this.SuspendLayout(); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(197, 236); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 0; this.cancelButton.Text = "Close"; this.cancelButton.UseVisualStyleBackColor = true; // // treeView // this.treeView.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.treeView.Location = new System.Drawing.Point(12, 12); this.treeView.Name = "treeView"; this.treeView.ShowRootLines = false; this.treeView.Size = new System.Drawing.Size(260, 218); this.treeView.TabIndex = 1; // // SemanticTreeDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(284, 262); this.Controls.Add(this.treeView); this.Controls.Add(this.cancelButton); this.Name = "SemanticTreeDialog"; this.Text = "Semantic Tree"; this.ResumeLayout(false); } private System.Windows.Forms.TreeView treeView; private System.Windows.Forms.Button cancelButton; } }