📄 form1.designer.cs
字号:
namespace UsingStatement
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
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()
{
this.source = new System.Windows.Forms.RichTextBox();
this.filename = new System.Windows.Forms.TextBox();
this.openFile = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// source
//
this.source.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.source.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.source.Location = new System.Drawing.Point(20, 66);
this.source.Name = "source";
this.source.ReadOnly = true;
this.source.Size = new System.Drawing.Size(576, 320);
this.source.TabIndex = 5;
this.source.Text = "";
//
// filename
//
this.filename.BackColor = System.Drawing.Color.White;
this.filename.Enabled = false;
this.filename.Location = new System.Drawing.Point(108, 26);
this.filename.Name = "filename";
this.filename.Size = new System.Drawing.Size(232, 20);
this.filename.TabIndex = 4;
//
// openFile
//
this.openFile.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.openFile.Location = new System.Drawing.Point(20, 23);
this.openFile.Name = "openFile";
this.openFile.TabIndex = 6;
this.openFile.Text = "Open File";
this.openFile.Click += new System.EventHandler(this.openFile_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(108, 13);
this.label1.Name = "label1";
this.label1.TabIndex = 7;
this.label1.Text = "Current File";
//
// openFileDialog
//
this.openFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog_FileOk);
//
// Form1
//
this.ClientSize = new System.Drawing.Size(616, 413);
this.Controls.Add(this.filename);
this.Controls.Add(this.label1);
this.Controls.Add(this.openFile);
this.Controls.Add(this.source);
this.Name = "Form1";
this.Text = "Using Statement";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox source;
private System.Windows.Forms.TextBox filename;
private System.Windows.Forms.Button openFile;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.OpenFileDialog openFileDialog;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -