AIMS/DrawGraphManagement/MyUserControl/ConvertModeForm.Designer.cs
2022-08-23 21:12:59 +08:00

175 lines
7.7 KiB
C#

namespace DrawGraphManagement.MyUserControl
{
partial class ConvertModeForm
{
/// <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()
{
this.cmbConvertMode = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.labTitle = new System.Windows.Forms.Label();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabCodeTableConvert = new System.Windows.Forms.TabPage();
this.labCZ = new System.Windows.Forms.Label();
this.pnlCodeTable = new System.Windows.Forms.Panel();
this.labDescCodeTableVal = new System.Windows.Forms.Label();
this.labSrcCodeTableVal = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.tabControl1.SuspendLayout();
this.tabCodeTableConvert.SuspendLayout();
this.SuspendLayout();
//
// cmbConvertMode
//
this.cmbConvertMode.FormattingEnabled = true;
this.cmbConvertMode.Location = new System.Drawing.Point(373, 5);
this.cmbConvertMode.Name = "cmbConvertMode";
this.cmbConvertMode.Size = new System.Drawing.Size(121, 20);
this.cmbConvertMode.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(256, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(101, 12);
this.label1.TabIndex = 1;
this.label1.Text = "针对值的转换方式";
//
// labTitle
//
this.labTitle.AutoSize = true;
this.labTitle.Location = new System.Drawing.Point(12, 9);
this.labTitle.Name = "labTitle";
this.labTitle.Size = new System.Drawing.Size(29, 12);
this.labTitle.TabIndex = 2;
this.labTitle.Text = "内容";
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabCodeTableConvert);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.tabControl1.Location = new System.Drawing.Point(0, 41);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(638, 371);
this.tabControl1.TabIndex = 3;
//
// tabCodeTableConvert
//
this.tabCodeTableConvert.Controls.Add(this.labCZ);
this.tabCodeTableConvert.Controls.Add(this.pnlCodeTable);
this.tabCodeTableConvert.Controls.Add(this.labDescCodeTableVal);
this.tabCodeTableConvert.Controls.Add(this.labSrcCodeTableVal);
this.tabCodeTableConvert.Controls.Add(this.button1);
this.tabCodeTableConvert.Location = new System.Drawing.Point(4, 22);
this.tabCodeTableConvert.Name = "tabCodeTableConvert";
this.tabCodeTableConvert.Padding = new System.Windows.Forms.Padding(3);
this.tabCodeTableConvert.Size = new System.Drawing.Size(630, 345);
this.tabCodeTableConvert.TabIndex = 0;
this.tabCodeTableConvert.Text = "码表转换";
this.tabCodeTableConvert.UseVisualStyleBackColor = true;
//
// labCZ
//
this.labCZ.AutoSize = true;
this.labCZ.Location = new System.Drawing.Point(367, 43);
this.labCZ.Name = "labCZ";
this.labCZ.Size = new System.Drawing.Size(65, 12);
this.labCZ.TabIndex = 6;
this.labCZ.Text = "码表目的值";
//
// pnlCodeTable
//
this.pnlCodeTable.AutoScroll = true;
this.pnlCodeTable.Location = new System.Drawing.Point(3, 63);
this.pnlCodeTable.Name = "pnlCodeTable";
this.pnlCodeTable.Size = new System.Drawing.Size(619, 274);
this.pnlCodeTable.TabIndex = 5;
//
// labDescCodeTableVal
//
this.labDescCodeTableVal.AutoSize = true;
this.labDescCodeTableVal.Location = new System.Drawing.Point(190, 43);
this.labDescCodeTableVal.Name = "labDescCodeTableVal";
this.labDescCodeTableVal.Size = new System.Drawing.Size(65, 12);
this.labDescCodeTableVal.TabIndex = 4;
this.labDescCodeTableVal.Text = "码表目的值";
//
// labSrcCodeTableVal
//
this.labSrcCodeTableVal.AutoSize = true;
this.labSrcCodeTableVal.Location = new System.Drawing.Point(8, 43);
this.labSrcCodeTableVal.Name = "labSrcCodeTableVal";
this.labSrcCodeTableVal.Size = new System.Drawing.Size(53, 12);
this.labSrcCodeTableVal.TabIndex = 3;
this.labSrcCodeTableVal.Text = "码表源值";
//
// button1
//
this.button1.Location = new System.Drawing.Point(10, 10);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "增加码表项";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// ConvertModeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(638, 412);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.labTitle);
this.Controls.Add(this.label1);
this.Controls.Add(this.cmbConvertMode);
this.Name = "ConvertModeForm";
this.Text = "转换模式窗体";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConvertModeForm_FormClosing);
this.Load += new System.EventHandler(this.ConvertModeForm_Load);
this.tabControl1.ResumeLayout(false);
this.tabCodeTableConvert.ResumeLayout(false);
this.tabCodeTableConvert.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cmbConvertMode;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labTitle;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabCodeTableConvert;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label labDescCodeTableVal;
private System.Windows.Forms.Label labSrcCodeTableVal;
private System.Windows.Forms.Panel pnlCodeTable;
private System.Windows.Forms.Label labCZ;
}
}