📄 findata.fxjreader.designer.cs
字号:
this.dataTypeDesc.Text = "(必选)";
//
// 文件FToolStripMenuItem
//
this.文件FToolStripMenuItem.Name = "文件FToolStripMenuItem";
this.文件FToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
this.文件FToolStripMenuItem.Text = "文件(&F)";
//
// 退出XToolStripMenuItem
//
this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem";
this.退出XToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.退出XToolStripMenuItem.Text = "退出(&X)";
//
// 帮助HToolStripMenuItem
//
this.帮助HToolStripMenuItem.Name = "帮助HToolStripMenuItem";
this.帮助HToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
this.帮助HToolStripMenuItem.Text = "帮助(&H)";
//
// 说明DToolStripMenuItem
//
this.说明DToolStripMenuItem.Name = "说明DToolStripMenuItem";
this.说明DToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.说明DToolStripMenuItem.Text = "说明(&D)";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 6);
//
// 关于AToolStripMenuItem
//
this.关于AToolStripMenuItem.Name = "关于AToolStripMenuItem";
this.关于AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
//
// methodText
//
this.methodText.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.methodText.Location = new System.Drawing.Point(72, 93);
this.methodText.Name = "methodText";
this.methodText.ReadOnly = true;
this.methodText.Size = new System.Drawing.Size(620, 21);
this.methodText.TabIndex = 7;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(13, 96);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(53, 12);
this.label4.TabIndex = 4;
this.label4.Text = "调用方法";
//
// 数海淘金网ToolStripMenuItem
//
this.数海淘金网ToolStripMenuItem.Name = "数海淘金网ToolStripMenuItem";
this.数海淘金网ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.数海淘金网ToolStripMenuItem.Text = "数海淘金网";
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(149, 6);
//
// readFieldNames
//
this.readFieldNames.Location = new System.Drawing.Point(72, 123);
this.readFieldNames.Name = "readFieldNames";
this.readFieldNames.Size = new System.Drawing.Size(95, 27);
this.readFieldNames.TabIndex = 8;
this.readFieldNames.Text = "读取字段名(&F)";
this.readFieldNames.UseVisualStyleBackColor = true;
this.readFieldNames.Click += new System.EventHandler(this.readFieldNames_Click);
//
// statusStrip1
//
this.statusStrip1.Location = new System.Drawing.Point(0, 568);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(923, 22);
this.statusStrip1.TabIndex = 9;
this.statusStrip1.Text = "statusStrip1";
//
// url
//
this.url.ActiveLinkColor = System.Drawing.Color.Red;
this.url.AutoSize = true;
this.url.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
this.url.LinkColor = System.Drawing.Color.Blue;
this.url.Location = new System.Drawing.Point(535, 9);
this.url.Name = "url";
this.url.Size = new System.Drawing.Size(137, 12);
this.url.TabIndex = 10;
this.url.TabStop = true;
this.url.Text = "http://www.sasfans.com";
this.url.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.url_LinkClicked);
//
// exportData
//
this.exportData.Location = new System.Drawing.Point(792, 123);
this.exportData.Name = "exportData";
this.exportData.Size = new System.Drawing.Size(119, 27);
this.exportData.TabIndex = 0;
this.exportData.Text = "导出下表数据(&X)";
this.exportData.UseVisualStyleBackColor = true;
this.exportData.Click += new System.EventHandler(this.exportData_Click);
//
// DzhReader
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(923, 590);
this.Controls.Add(this.url);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.readFieldNames);
this.Controls.Add(this.methodText);
this.Controls.Add(this.dataType);
this.Controls.Add(this.dataTypeDesc);
this.Controls.Add(this.codeDesc);
this.Controls.Add(this.newFileNameDesc);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.dataGridView);
this.Controls.Add(this.newFileName);
this.Controls.Add(this.code);
this.Controls.Add(this.exportData);
this.Controls.Add(this.button1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "DzhReader";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FinDataTools-大智慧数据读取工具";
this.Load += new System.EventHandler(this.DzhReader_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox newFileName;
public System.Windows.Forms.DataGridView dataGridView;
private System.Windows.Forms.TextBox code;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox dataType;
private System.Windows.Forms.Label newFileNameDesc;
private System.Windows.Forms.Label codeDesc;
private System.Windows.Forms.Label dataTypeDesc;
private System.Windows.Forms.ToolStripMenuItem 文件FToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 退出XToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 帮助HToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 说明DToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 关于AToolStripMenuItem;
private System.Windows.Forms.TextBox methodText;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ToolStripMenuItem 数海淘金网ToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
private System.Windows.Forms.Button readFieldNames;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.LinkLabel url;
private System.Windows.Forms.Button exportData;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -