📄 form1.designer.cs
字号:
namespace WindowsApplication1
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.txtOutput = new System.Windows.Forms.TextBox();
this.btnCompile = new System.Windows.Forms.Button();
this.txtCode = new System.Windows.Forms.TextBox();
this.btnRun = new System.Windows.Forms.Button();
this.btnCompileRun = new System.Windows.Forms.Button();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.panel1 = new System.Windows.Forms.Panel();
this.button3 = new System.Windows.Forms.Button();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// txtOutput
//
this.txtOutput.BackColor = System.Drawing.Color.White;
this.txtOutput.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtOutput.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtOutput.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
this.txtOutput.Location = new System.Drawing.Point(0, 29);
this.txtOutput.Multiline = true;
this.txtOutput.Name = "txtOutput";
this.txtOutput.ReadOnly = true;
this.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtOutput.Size = new System.Drawing.Size(468, 86);
this.txtOutput.TabIndex = 0;
//
// btnCompile
//
this.btnCompile.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCompile.Location = new System.Drawing.Point(1, 2);
this.btnCompile.Name = "btnCompile";
this.btnCompile.Size = new System.Drawing.Size(75, 23);
this.btnCompile.TabIndex = 1;
this.btnCompile.Text = "Compile";
this.btnCompile.UseVisualStyleBackColor = true;
this.btnCompile.Click += new System.EventHandler(this.button1_Click);
//
// txtCode
//
this.txtCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtCode.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtCode.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtCode.Location = new System.Drawing.Point(0, 0);
this.txtCode.Multiline = true;
this.txtCode.Name = "txtCode";
this.txtCode.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtCode.Size = new System.Drawing.Size(468, 278);
this.txtCode.TabIndex = 2;
this.txtCode.Text = "public class test {\r\n\r\n public static void main (String [] args) {\r\n\r\n Sys" +
"tem.out.println(\"Hello World\");\r\n\r\n }\r\n}";
//
// btnRun
//
this.btnRun.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnRun.Location = new System.Drawing.Point(82, 2);
this.btnRun.Name = "btnRun";
this.btnRun.Size = new System.Drawing.Size(75, 23);
this.btnRun.TabIndex = 3;
this.btnRun.Text = "Run";
this.btnRun.UseVisualStyleBackColor = true;
this.btnRun.Click += new System.EventHandler(this.button1_Click_1);
//
// btnCompileRun
//
this.btnCompileRun.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCompileRun.Location = new System.Drawing.Point(163, 2);
this.btnCompileRun.Name = "btnCompileRun";
this.btnCompileRun.Size = new System.Drawing.Size(85, 23);
this.btnCompileRun.TabIndex = 4;
this.btnCompileRun.Text = "Compile && Run";
this.btnCompileRun.UseVisualStyleBackColor = true;
this.btnCompileRun.Click += new System.EventHandler(this.button2_Click);
//
// splitContainer1
//
this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
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.txtCode);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.txtOutput);
this.splitContainer1.Panel2.Controls.Add(this.panel1);
this.splitContainer1.Size = new System.Drawing.Size(470, 401);
this.splitContainer1.SplitterDistance = 280;
this.splitContainer1.TabIndex = 5;
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.button3);
this.panel1.Controls.Add(this.btnCompileRun);
this.panel1.Controls.Add(this.btnCompile);
this.panel1.Controls.Add(this.btnRun);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(468, 29);
this.panel1.TabIndex = 5;
//
// button3
//
this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.button3.Location = new System.Drawing.Point(446, 3);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(19, 23);
this.button3.TabIndex = 5;
this.button3.Text = "?";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(470, 401);
this.Controls.Add(this.splitContainer1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form1";
this.Text = "Java Learner IDE - test.java";
this.Load += new System.EventHandler(this.Form1_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
this.splitContainer1.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtOutput;
private System.Windows.Forms.Button btnCompile;
private System.Windows.Forms.TextBox txtCode;
private System.Windows.Forms.Button btnRun;
private System.Windows.Forms.Button btnCompileRun;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button button3;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -