LagerFileView/MainView.Designer.cs
2025-10-17 14:11:06 +08:00

160 lines
6.1 KiB
C#

namespace LagerFileView
{
partial class MainView
{
/// <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() {
toolStripContainer1 = new ToolStripContainer();
statusStrip1 = new StatusStrip();
labStatus = new ToolStripStatusLabel();
trbFileText = new RichTextBox();
menuStrip1 = new MenuStrip();
butOpenFile = new ToolStripMenuItem();
moveLast = new ToolStripMenuItem();
moveNext = new ToolStripMenuItem();
openFileDialog1 = new OpenFileDialog();
toolStripContainer1.BottomToolStripPanel.SuspendLayout();
toolStripContainer1.ContentPanel.SuspendLayout();
toolStripContainer1.TopToolStripPanel.SuspendLayout();
toolStripContainer1.SuspendLayout();
statusStrip1.SuspendLayout();
menuStrip1.SuspendLayout();
SuspendLayout();
//
// toolStripContainer1
//
//
// toolStripContainer1.BottomToolStripPanel
//
toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1);
//
// toolStripContainer1.ContentPanel
//
toolStripContainer1.ContentPanel.Controls.Add(trbFileText);
toolStripContainer1.ContentPanel.Size = new Size(772,356);
toolStripContainer1.Dock = DockStyle.Fill;
toolStripContainer1.Location = new Point(0,0);
toolStripContainer1.Name = "toolStripContainer1";
toolStripContainer1.Size = new Size(772,403);
toolStripContainer1.TabIndex = 0;
toolStripContainer1.Text = "toolStripContainer1";
//
// toolStripContainer1.TopToolStripPanel
//
toolStripContainer1.TopToolStripPanel.Controls.Add(menuStrip1);
//
// statusStrip1
//
statusStrip1.Dock = DockStyle.None;
statusStrip1.Items.AddRange(new ToolStripItem[] { labStatus });
statusStrip1.Location = new Point(0,0);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new Size(772,22);
statusStrip1.TabIndex = 0;
//
// labStatus
//
labStatus.Name = "labStatus";
labStatus.Size = new Size(0,17);
//
// trbFileText
//
trbFileText.Dock = DockStyle.Fill;
trbFileText.Location = new Point(0,0);
trbFileText.Name = "trbFileText";
trbFileText.Size = new Size(772,356);
trbFileText.TabIndex = 0;
trbFileText.Text = "";
//
// menuStrip1
//
menuStrip1.Dock = DockStyle.None;
menuStrip1.Items.AddRange(new ToolStripItem[] { butOpenFile,moveLast,moveNext });
menuStrip1.Location = new Point(0,0);
menuStrip1.Name = "menuStrip1";
menuStrip1.Size = new Size(772,25);
menuStrip1.TabIndex = 0;
menuStrip1.Text = "menuStrip1";
//
// butOpenFile
//
butOpenFile.Name = "butOpenFile";
butOpenFile.Size = new Size(68,21);
butOpenFile.Text = "打开文件";
butOpenFile.Click += butOpenFile_Click;
//
// moveLast
//
moveLast.Name = "moveLast";
moveLast.Size = new Size(56,21);
moveLast.Text = "上一页";
moveLast.Click += moveLast_Click;
//
// moveNext
//
moveNext.Name = "moveNext";
moveNext.Size = new Size(56,21);
moveNext.Text = "下一页";
moveNext.Click += moveNext_Click;
//
// openFileDialog1
//
openFileDialog1.FileName = "openFileDialog1";
//
// MainView
//
AutoScaleDimensions = new SizeF(7F,17F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(772,403);
Controls.Add(toolStripContainer1);
MainMenuStrip = menuStrip1;
Name = "MainView";
Text = "MainView";
toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
toolStripContainer1.BottomToolStripPanel.PerformLayout();
toolStripContainer1.ContentPanel.ResumeLayout(false);
toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
toolStripContainer1.TopToolStripPanel.PerformLayout();
toolStripContainer1.ResumeLayout(false);
toolStripContainer1.PerformLayout();
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
ResumeLayout(false);
}
#endregion
private ToolStripContainer toolStripContainer1;
private StatusStrip statusStrip1;
private ToolStripStatusLabel labStatus;
private MenuStrip menuStrip1;
private ToolStripMenuItem butOpenFile;
private RichTextBox trbFileText;
private OpenFileDialog openFileDialog1;
private ToolStripMenuItem moveLast;
private ToolStripMenuItem moveNext;
}
}