You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
8.4 KiB
C#
170 lines
8.4 KiB
C#
namespace LibTest
|
|
{
|
|
partial class FrmDatabaseIO
|
|
{
|
|
/// <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(FrmDatabaseIO));
|
|
System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("工区数据");
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
this.btnOpenProject = new System.Windows.Forms.ToolStripButton();
|
|
this.btnInsert = new System.Windows.Forms.ToolStripButton();
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.treeView1 = new System.Windows.Forms.TreeView();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.btnUpdate = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStrip1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.btnOpenProject,
|
|
this.btnInsert,
|
|
this.btnUpdate});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 0);
|
|
this.toolStrip1.Size = new System.Drawing.Size(832, 25);
|
|
this.toolStrip1.TabIndex = 0;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// btnOpenProject
|
|
//
|
|
this.btnOpenProject.Image = ((System.Drawing.Image)(resources.GetObject("btnOpenProject.Image")));
|
|
this.btnOpenProject.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
|
|
this.btnOpenProject.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnOpenProject.Name = "btnOpenProject";
|
|
this.btnOpenProject.Size = new System.Drawing.Size(76, 22);
|
|
this.btnOpenProject.Text = "打开工区";
|
|
this.btnOpenProject.Click += new System.EventHandler(this.btnOpenProject_Click);
|
|
//
|
|
// btnInsert
|
|
//
|
|
this.btnInsert.Image = ((System.Drawing.Image)(resources.GetObject("btnInsert.Image")));
|
|
this.btnInsert.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
|
|
this.btnInsert.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnInsert.Name = "btnInsert";
|
|
this.btnInsert.Size = new System.Drawing.Size(76, 22);
|
|
this.btnInsert.Text = "插入数据";
|
|
this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click);
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 25);
|
|
this.splitContainer1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.treeView1);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.dataGridView1);
|
|
this.splitContainer1.Size = new System.Drawing.Size(832, 393);
|
|
this.splitContainer1.SplitterDistance = 255;
|
|
this.splitContainer1.SplitterWidth = 2;
|
|
this.splitContainer1.TabIndex = 1;
|
|
//
|
|
// treeView1
|
|
//
|
|
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.treeView1.Location = new System.Drawing.Point(0, 0);
|
|
this.treeView1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.treeView1.Name = "treeView1";
|
|
treeNode2.Name = "节点0";
|
|
treeNode2.Text = "工区数据";
|
|
this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
|
|
treeNode2});
|
|
this.treeView1.Size = new System.Drawing.Size(255, 393);
|
|
this.treeView1.TabIndex = 0;
|
|
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
|
|
//
|
|
// 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, 0);
|
|
this.dataGridView1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowTemplate.Height = 37;
|
|
this.dataGridView1.Size = new System.Drawing.Size(575, 393);
|
|
this.dataGridView1.TabIndex = 0;
|
|
//
|
|
// btnUpdate
|
|
//
|
|
this.btnUpdate.Image = ((System.Drawing.Image)(resources.GetObject("btnUpdate.Image")));
|
|
this.btnUpdate.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
|
|
this.btnUpdate.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.btnUpdate.Name = "btnUpdate";
|
|
this.btnUpdate.Size = new System.Drawing.Size(76, 22);
|
|
this.btnUpdate.Text = "更新数据";
|
|
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
|
|
//
|
|
// FrmDatabaseIO
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(832, 418);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Controls.Add(this.toolStrip1);
|
|
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.Name = "FrmDatabaseIO";
|
|
this.Text = "FrmDatabaseIO";
|
|
this.Load += new System.EventHandler(this.FrmDatabaseIO_Load);
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
private System.Windows.Forms.ToolStripButton btnOpenProject;
|
|
private System.Windows.Forms.ToolStripButton btnInsert;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.TreeView treeView1;
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.ToolStripButton btnUpdate;
|
|
}
|
|
} |