1 Star 0 Fork 18

背着蛋壳奔跑 / UnityExcel2JsonGenCSharper

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
GetFile.Designer.cs 7.36 KB
Copy Edit Raw Blame History
keyle_xiao authored 2015-08-27 17:41 . Update Release 1
namespace Xamasoft.JsonClassGenerator.UI
{
partial class GetFile
{
/// <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(GetFile));
this.button1 = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.btnBrowse = new System.Windows.Forms.Button();
this.edtTargetFolder = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.SelectFile = new System.Windows.Forms.Button();
this.FilePath = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.index = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(121, 138);
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);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(18, 15);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(77, 12);
this.label4.TabIndex = 26;
this.label4.Text = "目标文件夹:";
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(282, 10);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(24, 21);
this.btnBrowse.TabIndex = 25;
this.btnBrowse.Text = "...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click_1);
//
// edtTargetFolder
//
this.edtTargetFolder.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.edtTargetFolder.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories;
this.edtTargetFolder.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Xamasoft.JsonClassGenerator.UI.Properties.Settings.Default, "TargetFolder", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.edtTargetFolder.Location = new System.Drawing.Point(121, 12);
this.edtTargetFolder.Name = "edtTargetFolder";
this.edtTargetFolder.ReadOnly = true;
this.edtTargetFolder.Size = new System.Drawing.Size(155, 21);
this.edtTargetFolder.TabIndex = 24;
this.edtTargetFolder.Text = global::Xamasoft.JsonClassGenerator.UI.Properties.Settings.Default.TargetFolder;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(18, 55);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(71, 12);
this.label1.TabIndex = 27;
this.label1.Text = "选择XLS文件";
//
// SelectFile
//
this.SelectFile.Location = new System.Drawing.Point(282, 52);
this.SelectFile.Name = "SelectFile";
this.SelectFile.Size = new System.Drawing.Size(24, 23);
this.SelectFile.TabIndex = 28;
this.SelectFile.Text = ".";
this.SelectFile.UseVisualStyleBackColor = true;
this.SelectFile.Click += new System.EventHandler(this.SelectFile_Click);
//
// FilePath
//
this.FilePath.Location = new System.Drawing.Point(121, 55);
this.FilePath.Name = "FilePath";
this.FilePath.ReadOnly = true;
this.FilePath.Size = new System.Drawing.Size(155, 21);
this.FilePath.TabIndex = 29;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(7, 99);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 12);
this.label2.TabIndex = 30;
this.label2.Text = "类名(Sheet名):";
//
// index
//
this.index.Location = new System.Drawing.Point(121, 96);
this.index.Name = "index";
this.index.Size = new System.Drawing.Size(139, 21);
this.index.TabIndex = 31;
this.index.Text = "Test";
//
// GetFile
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ScrollBar;
this.ClientSize = new System.Drawing.Size(326, 178);
this.Controls.Add(this.index);
this.Controls.Add(this.label2);
this.Controls.Add(this.FilePath);
this.Controls.Add(this.SelectFile);
this.Controls.Add(this.label1);
this.Controls.Add(this.label4);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.edtTargetFolder);
this.Controls.Add(this.button1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "GetFile";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Excel转Json";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.TextBox edtTargetFolder;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button SelectFile;
private System.Windows.Forms.TextBox FilePath;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox index;
}
}
1
https://gitee.com/YiChangM/UnityExcel2JsonGenCSharper.git
git@gitee.com:YiChangM/UnityExcel2JsonGenCSharper.git
YiChangM
UnityExcel2JsonGenCSharper
UnityExcel2JsonGenCSharper
master

Search