📄 form1.designer.cs
字号:
namespace SyntaxEngineDemo
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPageRtf = new System.Windows.Forms.TabPage();
this.tabPageHtml = new System.Windows.Forms.TabPage();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.webBrowser1 = new System.Windows.Forms.WebBrowser();
this.textBox1 = new System.Windows.Forms.TextBox();
this.tabPageCode = new System.Windows.Forms.TabPage();
this.buttonClose = new System.Windows.Forms.Button();
this.tabControl1.SuspendLayout();
this.tabPageRtf.SuspendLayout();
this.tabPageHtml.SuspendLayout();
this.tabPageCode.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.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.tabControl1.Controls.Add(this.tabPageCode);
this.tabControl1.Controls.Add(this.tabPageRtf);
this.tabControl1.Controls.Add(this.tabPageHtml);
this.tabControl1.Location = new System.Drawing.Point(2, 2);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(435, 271);
this.tabControl1.TabIndex = 0;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
//
// tabPageRtf
//
this.tabPageRtf.Controls.Add(this.richTextBox1);
this.tabPageRtf.Location = new System.Drawing.Point(4, 21);
this.tabPageRtf.Name = "tabPageRtf";
this.tabPageRtf.Padding = new System.Windows.Forms.Padding(3);
this.tabPageRtf.Size = new System.Drawing.Size(284, 241);
this.tabPageRtf.TabIndex = 1;
this.tabPageRtf.Text = "Rtf";
this.tabPageRtf.UseVisualStyleBackColor = true;
//
// tabPageHtml
//
this.tabPageHtml.Controls.Add(this.webBrowser1);
this.tabPageHtml.Location = new System.Drawing.Point(4, 21);
this.tabPageHtml.Name = "tabPageHtml";
this.tabPageHtml.Padding = new System.Windows.Forms.Padding(3);
this.tabPageHtml.Size = new System.Drawing.Size(427, 246);
this.tabPageHtml.TabIndex = 2;
this.tabPageHtml.Text = "Html";
this.tabPageHtml.UseVisualStyleBackColor = true;
//
// richTextBox1
//
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox1.Location = new System.Drawing.Point(3, 3);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(278, 235);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = "";
//
// webBrowser1
//
this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
this.webBrowser1.Location = new System.Drawing.Point(3, 3);
this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
this.webBrowser1.Name = "webBrowser1";
this.webBrowser1.Size = new System.Drawing.Size(421, 240);
this.webBrowser1.TabIndex = 0;
//
// textBox1
//
this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBox1.Location = new System.Drawing.Point(3, 3);
this.textBox1.MaxLength = 0;
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(421, 240);
this.textBox1.TabIndex = 0;
this.textBox1.Text = resources.GetString("textBox1.Text");
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// tabPageCode
//
this.tabPageCode.Controls.Add(this.textBox1);
this.tabPageCode.Location = new System.Drawing.Point(4, 21);
this.tabPageCode.Name = "tabPageCode";
this.tabPageCode.Padding = new System.Windows.Forms.Padding(3);
this.tabPageCode.Size = new System.Drawing.Size(427, 246);
this.tabPageCode.TabIndex = 0;
this.tabPageCode.Text = "Code";
this.tabPageCode.UseVisualStyleBackColor = true;
//
// buttonClose
//
this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonClose.Location = new System.Drawing.Point(348, 275);
this.buttonClose.Name = "buttonClose";
this.buttonClose.Size = new System.Drawing.Size(75, 23);
this.buttonClose.TabIndex = 2;
this.buttonClose.Text = "Close";
this.buttonClose.UseVisualStyleBackColor = true;
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 307);
this.Controls.Add(this.buttonClose);
this.Controls.Add(this.tabControl1);
this.Name = "Form1";
this.Text = "Form1";
this.tabControl1.ResumeLayout(false);
this.tabPageRtf.ResumeLayout(false);
this.tabPageHtml.ResumeLayout(false);
this.tabPageCode.ResumeLayout(false);
this.tabPageCode.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPageRtf;
private System.Windows.Forms.TabPage tabPageHtml;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.WebBrowser webBrowser1;
private System.Windows.Forms.TabPage tabPageCode;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button buttonClose;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -