mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
// 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 VBDomView : System.Windows.Forms.UserControl |
|
{ |
|
/// <summary> |
|
/// Designer variable used to keep track of non-visual components. |
|
/// </summary> |
|
private System.ComponentModel.IContainer components = null; |
|
|
|
/// <summary> |
|
/// Disposes resources used by the control. |
|
/// </summary> |
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|
protected override void Dispose(bool disposing) |
|
{ |
|
if (disposing) { |
|
if (components != null) { |
|
components.Dispose(); |
|
} |
|
} |
|
base.Dispose(disposing); |
|
} |
|
|
|
/// <summary> |
|
/// 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. |
|
/// </summary> |
|
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; |
|
} |
|
}
|
|
|