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.
125 lines
4.7 KiB
125 lines
4.7 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 MainForm |
|
{ |
|
/// <summary> |
|
/// Designer variable used to keep track of non-visual components. |
|
/// </summary> |
|
private System.ComponentModel.IContainer components = null; |
|
|
|
/// <summary> |
|
/// Disposes resources used by the form. |
|
/// </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.miniToolStrip = new System.Windows.Forms.ToolStrip(); |
|
this.tabPage1 = new System.Windows.Forms.TabPage(); |
|
this.csDemo1 = new ICSharpCode.NRefactory.Demo.CSDemo(); |
|
this.tabControl1 = new System.Windows.Forms.TabControl(); |
|
this.tabPage2 = new System.Windows.Forms.TabPage(); |
|
this.vbDemo1 = new ICSharpCode.NRefactory.Demo.VBDemo(); |
|
this.tabPage1.SuspendLayout(); |
|
this.tabControl1.SuspendLayout(); |
|
this.tabPage2.SuspendLayout(); |
|
this.SuspendLayout(); |
|
// |
|
// miniToolStrip |
|
// |
|
this.miniToolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); |
|
this.miniToolStrip.AutoSize = false; |
|
this.miniToolStrip.CanOverflow = false; |
|
this.miniToolStrip.Dock = System.Windows.Forms.DockStyle.None; |
|
this.miniToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; |
|
this.miniToolStrip.Location = new System.Drawing.Point(13, 3); |
|
this.miniToolStrip.Name = "miniToolStrip"; |
|
this.miniToolStrip.Size = new System.Drawing.Size(16, 25); |
|
this.miniToolStrip.TabIndex = 3; |
|
// |
|
// tabPage1 |
|
// |
|
this.tabPage1.Controls.Add(this.csDemo1); |
|
this.tabPage1.Location = new System.Drawing.Point(4, 22); |
|
this.tabPage1.Name = "tabPage1"; |
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3); |
|
this.tabPage1.Size = new System.Drawing.Size(507, 458); |
|
this.tabPage1.TabIndex = 0; |
|
this.tabPage1.Text = "C#"; |
|
this.tabPage1.UseVisualStyleBackColor = true; |
|
// |
|
// csDemo1 |
|
// |
|
this.csDemo1.Dock = System.Windows.Forms.DockStyle.Fill; |
|
this.csDemo1.Location = new System.Drawing.Point(3, 3); |
|
this.csDemo1.Name = "csDemo1"; |
|
this.csDemo1.Size = new System.Drawing.Size(501, 452); |
|
this.csDemo1.TabIndex = 0; |
|
// |
|
// tabControl1 |
|
// |
|
this.tabControl1.Controls.Add(this.tabPage1); |
|
this.tabControl1.Controls.Add(this.tabPage2); |
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; |
|
this.tabControl1.Location = new System.Drawing.Point(0, 0); |
|
this.tabControl1.Name = "tabControl1"; |
|
this.tabControl1.SelectedIndex = 0; |
|
this.tabControl1.Size = new System.Drawing.Size(515, 484); |
|
this.tabControl1.TabIndex = 0; |
|
// |
|
// tabPage2 |
|
// |
|
this.tabPage2.Controls.Add(this.vbDemo1); |
|
this.tabPage2.Location = new System.Drawing.Point(4, 22); |
|
this.tabPage2.Name = "tabPage2"; |
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3); |
|
this.tabPage2.Size = new System.Drawing.Size(507, 458); |
|
this.tabPage2.TabIndex = 1; |
|
this.tabPage2.Text = "VB"; |
|
this.tabPage2.UseVisualStyleBackColor = true; |
|
// |
|
// vbDemo1 |
|
// |
|
this.vbDemo1.Dock = System.Windows.Forms.DockStyle.Fill; |
|
this.vbDemo1.Location = new System.Drawing.Point(3, 3); |
|
this.vbDemo1.Name = "vbDemo1"; |
|
this.vbDemo1.Size = new System.Drawing.Size(501, 452); |
|
this.vbDemo1.TabIndex = 0; |
|
// |
|
// MainForm |
|
// |
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
this.ClientSize = new System.Drawing.Size(515, 484); |
|
this.Controls.Add(this.tabControl1); |
|
this.Name = "MainForm"; |
|
this.Text = "NRefactory Demo"; |
|
this.tabPage1.ResumeLayout(false); |
|
this.tabControl1.ResumeLayout(false); |
|
this.tabPage2.ResumeLayout(false); |
|
this.ResumeLayout(false); |
|
} |
|
private ICSharpCode.NRefactory.Demo.VBDemo vbDemo1; |
|
private System.Windows.Forms.TabPage tabPage2; |
|
private ICSharpCode.NRefactory.Demo.CSDemo csDemo1; |
|
private System.Windows.Forms.ToolStrip miniToolStrip; |
|
private System.Windows.Forms.TabPage tabPage1; |
|
private System.Windows.Forms.TabControl tabControl1; |
|
} |
|
}
|
|
|