Files
wg_cpso/CPSO/Forms/92_Knowledge/FrmSimpleMaterialLibrary.Designer.cs

155 lines
7.8 KiB
C#
Raw Normal View History

2026-03-25 18:20:24 +08:00
namespace CPSO.Forms._92_Knowledge
{
partial class FrmSimpleMaterialLibrary
{
/// <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(FrmSimpleMaterialLibrary));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.OToolStripButton = new System.Windows.Forms.ToolStripButton();
this.SToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.toolAdd = new System.Windows.Forms.ToolStripButton();
this.toolDelete = new System.Windows.Forms.ToolStripButton();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.OToolStripButton,
this.SToolStripButton,
this.toolStripSeparator,
this.toolAdd,
this.toolDelete});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(800, 27);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// 打开OToolStripButton
//
this.OToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.OToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripButton.Image")));
this.OToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.OToolStripButton.Name = "打开OToolStripButton";
this.OToolStripButton.Size = new System.Drawing.Size(29, 24);
this.OToolStripButton.Text = "打开(&O)";
this.OToolStripButton.Click += new System.EventHandler(this.OToolStripButton_Click);
//
// 保存SToolStripButton
//
this.SToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.SToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripButton.Image")));
this.SToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.SToolStripButton.Name = "保存SToolStripButton";
this.SToolStripButton.Size = new System.Drawing.Size(29, 24);
this.SToolStripButton.Text = "保存(&S)";
this.SToolStripButton.Click += new System.EventHandler(this.SToolStripButton_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 27);
//
// toolAdd
//
this.toolAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolAdd.Image = global::CPSO.Properties.Resources.add;
this.toolAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolAdd.Name = "toolAdd";
this.toolAdd.Size = new System.Drawing.Size(29, 24);
this.toolAdd.Text = "toolStripButton1";
this.toolAdd.Click += new System.EventHandler(this.toolAdd_Click);
//
// toolDelete
//
this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolDelete.Image = global::CPSO.Properties.Resources.erase;
this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolDelete.Name = "toolDelete";
this.toolDelete.Size = new System.Drawing.Size(29, 24);
this.toolDelete.Text = "toolStripButton2";
this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Location = new System.Drawing.Point(0, 428);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(800, 22);
this.statusStrip1.TabIndex = 1;
this.statusStrip1.Text = "statusStrip1";
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(0, 27);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowHeadersWidth = 51;
this.dataGridView1.Size = new System.Drawing.Size(800, 401);
this.dataGridView1.TabIndex = 2;
//
// FrmSimpleMaterialLibrary
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.toolStrip1);
this.Name = "FrmSimpleMaterialLibrary";
this.ShowInTaskbar = false;
this.Text = "FrmSimpleMaterialLibrary";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmSimpleMaterialLibrary_FormClosing);
this.Load += new System.EventHandler(this.FrmSimpleMaterialLibrary_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton OToolStripButton;
private System.Windows.Forms.ToolStripButton SToolStripButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.ToolStripButton toolAdd;
private System.Windows.Forms.ToolStripButton toolDelete;
}
}