// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
namespace ICSharpCode.NRefactory.Demo
{
partial class VBAstView : System.Windows.Forms.UserControl
{
///
/// 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.tree = new System.Windows.Forms.TreeView();
this.SuspendLayout();
//
// tree
//
this.tree.Dock = System.Windows.Forms.DockStyle.Fill;
this.tree.HideSelection = false;
this.tree.Location = new System.Drawing.Point(0, 0);
this.tree.Name = "tree";
this.tree.ShowRootLines = false;
this.tree.Size = new System.Drawing.Size(186, 182);
this.tree.TabIndex = 0;
this.tree.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
//
// AstView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tree);
this.Name = "AstView";
this.Size = new System.Drawing.Size(186, 182);
this.ResumeLayout(false);
}
private System.Windows.Forms.TreeView tree;
}
}