Archived
1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SomeLab/CS/lab15/15_6/Form1.Designer.cs
2026-03-19 19:39:01 +08:00

270 lines
14 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace _15_6
{
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()
{
this.components = new System.ComponentModel.Container();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.NToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.退XToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.XToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.VToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.FToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.XToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.CToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.VToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.FToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(13, 35);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(775, 412);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = "";
//
// menuStrip1
//
this.menuStrip1.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripMenuItem,
this.ToolStripMenuItem,
this.ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(800, 32);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// 文件ToolStripMenuItem
//
this.ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.NToolStripMenuItem,
this.OToolStripMenuItem,
this.SToolStripMenuItem,
this.toolStripSeparator1,
this.退XToolStripMenuItem});
this.ToolStripMenuItem.Name = "文件ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(62, 28);
this.ToolStripMenuItem.Text = "文件";
//
// 新建NToolStripMenuItem
//
this.NToolStripMenuItem.Name = "新建NToolStripMenuItem";
this.NToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.NToolStripMenuItem.Text = "新建(&N)";
this.NToolStripMenuItem.Click += new System.EventHandler(this.NToolStripMenuItem_Click);
//
// 打开OToolStripMenuItem
//
this.OToolStripMenuItem.Name = "打开OToolStripMenuItem";
this.OToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.OToolStripMenuItem.Text = "打开(&O)";
//
// 保存SToolStripMenuItem
//
this.SToolStripMenuItem.Name = "保存SToolStripMenuItem";
this.SToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.SToolStripMenuItem.Text = "保存(&S)";
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(267, 6);
//
// 退出XToolStripMenuItem
//
this.退XToolStripMenuItem.Name = "退出XToolStripMenuItem";
this.退XToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.退XToolStripMenuItem.Text = "退出(&X)";
//
// 编辑ToolStripMenuItem
//
this.ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.XToolStripMenuItem,
this.CToolStripMenuItem,
this.VToolStripMenuItem,
this.toolStripSeparator2,
this.FToolStripMenuItem});
this.ToolStripMenuItem.Name = "编辑ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(62, 28);
this.ToolStripMenuItem.Text = "编辑";
//
// 剪切XToolStripMenuItem
//
this.XToolStripMenuItem.Name = "剪切XToolStripMenuItem";
this.XToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.XToolStripMenuItem.Text = "剪切(&X)";
this.XToolStripMenuItem.Click += new System.EventHandler(this.XToolStripMenuItem_Click);
//
// 复制CToolStripMenuItem
//
this.CToolStripMenuItem.Name = "复制CToolStripMenuItem";
this.CToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.CToolStripMenuItem.Text = "复制(&C)";
this.CToolStripMenuItem.Click += new System.EventHandler(this.CToolStripMenuItem_Click);
//
// 粘贴VToolStripMenuItem
//
this.VToolStripMenuItem.Name = "粘贴VToolStripMenuItem";
this.VToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.VToolStripMenuItem.Text = "粘贴(&V)";
this.VToolStripMenuItem.Click += new System.EventHandler(this.VToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(267, 6);
//
// 字体FToolStripMenuItem
//
this.FToolStripMenuItem.Name = "字体FToolStripMenuItem";
this.FToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.FToolStripMenuItem.Text = "字体(&F)";
//
// 帮助ToolStripMenuItem
//
this.ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripMenuItem});
this.ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(62, 28);
this.ToolStripMenuItem.Text = "帮助";
//
// 版本ToolStripMenuItem
//
this.ToolStripMenuItem.Name = "版本ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
this.ToolStripMenuItem.Text = "版本";
//
// contextMenuStrip1
//
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.XToolStripMenuItem1,
this.CToolStripMenuItem1,
this.VToolStripMenuItem1,
this.toolStripSeparator3,
this.FToolStripMenuItem1});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(141, 130);
//
// 剪切XToolStripMenuItem1
//
this.XToolStripMenuItem1.Name = "剪切XToolStripMenuItem1";
this.XToolStripMenuItem1.Size = new System.Drawing.Size(240, 30);
this.XToolStripMenuItem1.Text = "剪切(&X)";
this.XToolStripMenuItem1.Click += new System.EventHandler(this.XToolStripMenuItem1_Click);
//
// 复制CToolStripMenuItem1
//
this.CToolStripMenuItem1.Name = "复制CToolStripMenuItem1";
this.CToolStripMenuItem1.Size = new System.Drawing.Size(240, 30);
this.CToolStripMenuItem1.Text = "复制(&C)";
this.CToolStripMenuItem1.Click += new System.EventHandler(this.CToolStripMenuItem1_Click);
//
// 粘贴VToolStripMenuItem1
//
this.VToolStripMenuItem1.Name = "粘贴VToolStripMenuItem1";
this.VToolStripMenuItem1.Size = new System.Drawing.Size(240, 30);
this.VToolStripMenuItem1.Text = "粘贴(&V)";
this.VToolStripMenuItem1.Click += new System.EventHandler(this.VToolStripMenuItem1_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(137, 6);
//
// 字体FToolStripMenuItem1
//
this.FToolStripMenuItem1.Name = "字体FToolStripMenuItem1";
this.FToolStripMenuItem1.Size = new System.Drawing.Size(140, 30);
this.FToolStripMenuItem1.Text = "字体(&F)";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Form1";
this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem NToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem OToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem SToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem 退XToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem XToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem CToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem VToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem FToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem XToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem CToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem VToolStripMenuItem1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem FToolStripMenuItem1;
}
}