------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
412 lines
21 KiB
C#
412 lines
21 KiB
C#
namespace 开发辅助工具.Tools
|
|
{
|
|
partial class APIEditor
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(APIEditor));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.TxtUrl = new ryControls.TextBoxEx2();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.TxtName = new ryControls.TextBoxEx2();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.LvPostData = new BrightIdeasSoftware.ObjectListView();
|
|
this.OlvParamName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
|
|
this.OlvTitle = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
|
|
this.OlvParamValue = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
|
|
this.OlvDesc = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
|
|
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.设置时间戳ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.设置jsonToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.添加参数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.删除参数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.复制参数名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.BtnCancel = new ryControls.ButtonEx();
|
|
this.BtnOK = new ryControls.ButtonEx();
|
|
this.BtnAddPost = new ryControls.ButtonEx();
|
|
this.BtnDelPost = new ryControls.ButtonEx();
|
|
this.TxtAPIName = new ryControls.TextBoxEx2();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.TxtDesc = new ryControls.TextBoxEx2();
|
|
((System.ComponentModel.ISupportInitialize)(this.LvPostData)).BeginInit();
|
|
this.contextMenuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(9, 48);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(23, 12);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Url";
|
|
//
|
|
// TxtUrl
|
|
//
|
|
this.TxtUrl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TxtUrl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
|
|
this.TxtUrl.EmptyText = "";
|
|
this.TxtUrl.Location = new System.Drawing.Point(41, 40);
|
|
this.TxtUrl.MaxLength = 999999999;
|
|
this.TxtUrl.Multiline = false;
|
|
this.TxtUrl.Name = "TxtUrl";
|
|
this.TxtUrl.OnlyNumeric = false;
|
|
this.TxtUrl.PasswordChar = '\0';
|
|
this.TxtUrl.ReadOnly = true;
|
|
this.TxtUrl.SelectedText = "";
|
|
this.TxtUrl.SelectionLength = 0;
|
|
this.TxtUrl.SelectionStart = 0;
|
|
this.TxtUrl.Size = new System.Drawing.Size(652, 27);
|
|
this.TxtUrl.TabIndex = 1;
|
|
this.TxtUrl.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
|
|
this.TxtUrl.ToolTip = "";
|
|
this.TxtUrl.WordWrap = true;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(9, 14);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(29, 12);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "名称";
|
|
//
|
|
// TxtName
|
|
//
|
|
this.TxtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TxtName.BackColor = System.Drawing.Color.White;
|
|
this.TxtName.EmptyText = "请输入名称";
|
|
this.TxtName.Location = new System.Drawing.Point(41, 7);
|
|
this.TxtName.MaxLength = 999999999;
|
|
this.TxtName.Multiline = false;
|
|
this.TxtName.Name = "TxtName";
|
|
this.TxtName.OnlyNumeric = false;
|
|
this.TxtName.PasswordChar = '\0';
|
|
this.TxtName.ReadOnly = false;
|
|
this.TxtName.SelectedText = "";
|
|
this.TxtName.SelectionLength = 0;
|
|
this.TxtName.SelectionStart = 0;
|
|
this.TxtName.Size = new System.Drawing.Size(352, 27);
|
|
this.TxtName.TabIndex = 0;
|
|
this.TxtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
|
|
this.TxtName.ToolTip = "";
|
|
this.TxtName.WordWrap = true;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(9, 92);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(29, 12);
|
|
this.label3.TabIndex = 4;
|
|
this.label3.Text = "参数";
|
|
//
|
|
// LvPostData
|
|
//
|
|
this.LvPostData.AllColumns.Add(this.OlvParamName);
|
|
this.LvPostData.AllColumns.Add(this.OlvTitle);
|
|
this.LvPostData.AllColumns.Add(this.OlvParamValue);
|
|
this.LvPostData.AllColumns.Add(this.OlvDesc);
|
|
this.LvPostData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.LvPostData.CellEditActivation = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.DoubleClick;
|
|
this.LvPostData.CellEditUseWholeCell = false;
|
|
this.LvPostData.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.OlvParamName,
|
|
this.OlvTitle,
|
|
this.OlvParamValue,
|
|
this.OlvDesc});
|
|
this.LvPostData.ContextMenuStrip = this.contextMenuStrip1;
|
|
this.LvPostData.Cursor = System.Windows.Forms.Cursors.Default;
|
|
this.LvPostData.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.LvPostData.FullRowSelect = true;
|
|
this.LvPostData.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|
this.LvPostData.HideSelection = false;
|
|
this.LvPostData.Location = new System.Drawing.Point(41, 92);
|
|
this.LvPostData.MultiSelect = false;
|
|
this.LvPostData.Name = "LvPostData";
|
|
this.LvPostData.RowHeight = 25;
|
|
this.LvPostData.Size = new System.Drawing.Size(653, 292);
|
|
this.LvPostData.TabIndex = 5;
|
|
this.LvPostData.UseCellFormatEvents = true;
|
|
this.LvPostData.UseCompatibleStateImageBehavior = false;
|
|
this.LvPostData.View = System.Windows.Forms.View.Details;
|
|
this.LvPostData.CellEditFinishing += new BrightIdeasSoftware.CellEditEventHandler(this.LvPostData_CellEditFinishing);
|
|
this.LvPostData.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.LvPostData_MouseDoubleClick);
|
|
//
|
|
// OlvParamName
|
|
//
|
|
this.OlvParamName.IsEditable = true;
|
|
this.OlvParamName.Text = "参数名";
|
|
this.OlvParamName.Width = 120;
|
|
//
|
|
// OlvTitle
|
|
//
|
|
this.OlvTitle.IsEditable = true;
|
|
this.OlvTitle.Text = "标题";
|
|
this.OlvTitle.Width = 100;
|
|
//
|
|
// OlvParamValue
|
|
//
|
|
this.OlvParamValue.IsEditable = true;
|
|
this.OlvParamValue.Text = "参数值";
|
|
this.OlvParamValue.Width = 210;
|
|
//
|
|
// OlvDesc
|
|
//
|
|
this.OlvDesc.IsEditable = true;
|
|
this.OlvDesc.Text = "备注";
|
|
this.OlvDesc.Width = 200;
|
|
//
|
|
// contextMenuStrip1
|
|
//
|
|
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.设置时间戳ToolStripMenuItem,
|
|
this.设置jsonToolStripMenuItem,
|
|
this.toolStripMenuItem1,
|
|
this.添加参数ToolStripMenuItem,
|
|
this.删除参数ToolStripMenuItem,
|
|
this.复制参数名ToolStripMenuItem});
|
|
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
|
this.contextMenuStrip1.Size = new System.Drawing.Size(149, 120);
|
|
//
|
|
// 设置时间戳ToolStripMenuItem
|
|
//
|
|
this.设置时间戳ToolStripMenuItem.Name = "设置时间戳ToolStripMenuItem";
|
|
this.设置时间戳ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
|
this.设置时间戳ToolStripMenuItem.Text = "设置时间戳";
|
|
this.设置时间戳ToolStripMenuItem.Click += new System.EventHandler(this.设置时间戳ToolStripMenuItem_Click);
|
|
//
|
|
// 设置jsonToolStripMenuItem
|
|
//
|
|
this.设置jsonToolStripMenuItem.Name = "设置jsonToolStripMenuItem";
|
|
this.设置jsonToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
|
this.设置jsonToolStripMenuItem.Text = "设置json文本";
|
|
this.设置jsonToolStripMenuItem.Click += new System.EventHandler(this.设置jsonToolStripMenuItem_Click);
|
|
//
|
|
// toolStripMenuItem1
|
|
//
|
|
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
|
this.toolStripMenuItem1.Size = new System.Drawing.Size(145, 6);
|
|
//
|
|
// 添加参数ToolStripMenuItem
|
|
//
|
|
this.添加参数ToolStripMenuItem.Name = "添加参数ToolStripMenuItem";
|
|
this.添加参数ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
|
this.添加参数ToolStripMenuItem.Text = "添加参数";
|
|
this.添加参数ToolStripMenuItem.Click += new System.EventHandler(this.添加参数ToolStripMenuItem_Click);
|
|
//
|
|
// 删除参数ToolStripMenuItem
|
|
//
|
|
this.删除参数ToolStripMenuItem.Name = "删除参数ToolStripMenuItem";
|
|
this.删除参数ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
|
this.删除参数ToolStripMenuItem.Text = "删除参数";
|
|
this.删除参数ToolStripMenuItem.Click += new System.EventHandler(this.删除参数ToolStripMenuItem_Click);
|
|
//
|
|
// 复制参数名ToolStripMenuItem
|
|
//
|
|
this.复制参数名ToolStripMenuItem.Name = "复制参数名ToolStripMenuItem";
|
|
this.复制参数名ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
|
|
this.复制参数名ToolStripMenuItem.Text = "复制参数名";
|
|
this.复制参数名ToolStripMenuItem.Click += new System.EventHandler(this.复制参数名ToolStripMenuItem_Click);
|
|
//
|
|
// BtnCancel
|
|
//
|
|
this.BtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnCancel.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
|
this.BtnCancel.Location = new System.Drawing.Point(618, 509);
|
|
this.BtnCancel.Name = "BtnCancel";
|
|
this.BtnCancel.Size = new System.Drawing.Size(75, 30);
|
|
this.BtnCancel.TabIndex = 7;
|
|
this.BtnCancel.Text = "取消";
|
|
this.BtnCancel.UseVisualStyleBackColor = true;
|
|
this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
|
|
//
|
|
// BtnOK
|
|
//
|
|
this.BtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.BtnOK.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
|
this.BtnOK.Location = new System.Drawing.Point(537, 509);
|
|
this.BtnOK.Name = "BtnOK";
|
|
this.BtnOK.Size = new System.Drawing.Size(75, 30);
|
|
this.BtnOK.TabIndex = 6;
|
|
this.BtnOK.Text = "确定";
|
|
this.BtnOK.UseVisualStyleBackColor = true;
|
|
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
|
|
//
|
|
// BtnAddPost
|
|
//
|
|
this.BtnAddPost.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
|
this.BtnAddPost.Location = new System.Drawing.Point(41, 68);
|
|
this.BtnAddPost.Name = "BtnAddPost";
|
|
this.BtnAddPost.Size = new System.Drawing.Size(30, 23);
|
|
this.BtnAddPost.TabIndex = 8;
|
|
this.BtnAddPost.Text = "+";
|
|
this.BtnAddPost.UseVisualStyleBackColor = true;
|
|
this.BtnAddPost.Click += new System.EventHandler(this.BtnAddPost_Click);
|
|
//
|
|
// BtnDelPost
|
|
//
|
|
this.BtnDelPost.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
|
this.BtnDelPost.Location = new System.Drawing.Point(77, 68);
|
|
this.BtnDelPost.Name = "BtnDelPost";
|
|
this.BtnDelPost.Size = new System.Drawing.Size(30, 23);
|
|
this.BtnDelPost.TabIndex = 9;
|
|
this.BtnDelPost.Text = "-";
|
|
this.BtnDelPost.UseVisualStyleBackColor = true;
|
|
this.BtnDelPost.Click += new System.EventHandler(this.BtnDel_Click);
|
|
//
|
|
// TxtAPIName
|
|
//
|
|
this.TxtAPIName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TxtAPIName.BackColor = System.Drawing.Color.White;
|
|
this.TxtAPIName.EmptyText = "请输入API名称";
|
|
this.TxtAPIName.Location = new System.Drawing.Point(448, 7);
|
|
this.TxtAPIName.MaxLength = 999999999;
|
|
this.TxtAPIName.Multiline = false;
|
|
this.TxtAPIName.Name = "TxtAPIName";
|
|
this.TxtAPIName.OnlyNumeric = false;
|
|
this.TxtAPIName.PasswordChar = '\0';
|
|
this.TxtAPIName.ReadOnly = false;
|
|
this.TxtAPIName.SelectedText = "";
|
|
this.TxtAPIName.SelectionLength = 0;
|
|
this.TxtAPIName.SelectionStart = 0;
|
|
this.TxtAPIName.Size = new System.Drawing.Size(245, 27);
|
|
this.TxtAPIName.TabIndex = 11;
|
|
this.TxtAPIName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
|
|
this.TxtAPIName.ToolTip = "";
|
|
this.TxtAPIName.WordWrap = true;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(395, 14);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(47, 12);
|
|
this.label4.TabIndex = 10;
|
|
this.label4.Text = "API名称";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.label5.AutoSize = true;
|
|
this.label5.Location = new System.Drawing.Point(9, 391);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(29, 12);
|
|
this.label5.TabIndex = 12;
|
|
this.label5.Text = "备注";
|
|
//
|
|
// TxtDesc
|
|
//
|
|
this.TxtDesc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TxtDesc.BackColor = System.Drawing.Color.White;
|
|
this.TxtDesc.EmptyText = "";
|
|
this.TxtDesc.Location = new System.Drawing.Point(41, 391);
|
|
this.TxtDesc.MaxLength = 999999999;
|
|
this.TxtDesc.Multiline = true;
|
|
this.TxtDesc.Name = "TxtDesc";
|
|
this.TxtDesc.OnlyNumeric = false;
|
|
this.TxtDesc.PasswordChar = '\0';
|
|
this.TxtDesc.ReadOnly = false;
|
|
this.TxtDesc.SelectedText = "";
|
|
this.TxtDesc.SelectionLength = 0;
|
|
this.TxtDesc.SelectionStart = 0;
|
|
this.TxtDesc.Size = new System.Drawing.Size(652, 112);
|
|
this.TxtDesc.TabIndex = 13;
|
|
this.TxtDesc.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
|
|
this.TxtDesc.ToolTip = "";
|
|
this.TxtDesc.WordWrap = true;
|
|
//
|
|
// APIEditor
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(709, 549);
|
|
this.Controls.Add(this.TxtDesc);
|
|
this.Controls.Add(this.label5);
|
|
this.Controls.Add(this.TxtAPIName);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.BtnDelPost);
|
|
this.Controls.Add(this.BtnAddPost);
|
|
this.Controls.Add(this.BtnCancel);
|
|
this.Controls.Add(this.BtnOK);
|
|
this.Controls.Add(this.LvPostData);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.TxtName);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.TxtUrl);
|
|
this.Controls.Add(this.label1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "APIEditor";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "API编辑器";
|
|
this.Load += new System.EventHandler(this.APIEditor_Load);
|
|
this.Shown += new System.EventHandler(this.APIEditor_Shown);
|
|
((System.ComponentModel.ISupportInitialize)(this.LvPostData)).EndInit();
|
|
this.contextMenuStrip1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private ryControls.TextBoxEx2 TxtUrl;
|
|
private System.Windows.Forms.Label label2;
|
|
private ryControls.TextBoxEx2 TxtName;
|
|
private System.Windows.Forms.Label label3;
|
|
private BrightIdeasSoftware.ObjectListView LvPostData;
|
|
private BrightIdeasSoftware.OLVColumn OlvParamName;
|
|
private BrightIdeasSoftware.OLVColumn OlvTitle;
|
|
private BrightIdeasSoftware.OLVColumn OlvParamValue;
|
|
private BrightIdeasSoftware.OLVColumn OlvDesc;
|
|
private ryControls.ButtonEx BtnCancel;
|
|
private ryControls.ButtonEx BtnOK;
|
|
private ryControls.ButtonEx BtnAddPost;
|
|
private ryControls.ButtonEx BtnDelPost;
|
|
private ryControls.TextBoxEx2 TxtAPIName;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem 添加参数ToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem 删除参数ToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
|
private System.Windows.Forms.ToolStripMenuItem 设置时间戳ToolStripMenuItem;
|
|
private System.Windows.Forms.Label label5;
|
|
private ryControls.TextBoxEx2 TxtDesc;
|
|
private System.Windows.Forms.ToolStripMenuItem 设置jsonToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem 复制参数名ToolStripMenuItem;
|
|
}
|
|
} |