forked from urbrato/json-canonicalizer
146 lines
5.0 KiB
C#
146 lines
5.0 KiB
C#
namespace JsonCanonicalizer.UI
|
||
{
|
||
partial class OneFileTaskForm
|
||
{
|
||
/// <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()
|
||
{
|
||
lblSrcFile = new Label();
|
||
txtSrcFile = new TextBox();
|
||
btnSrcFile = new Button();
|
||
txtDstFile = new TextBox();
|
||
lblDstFile = new Label();
|
||
btnDstFile = new Button();
|
||
btnDoIt = new Button();
|
||
dlgSrcFile = new OpenFileDialog();
|
||
dlgDstFile = new SaveFileDialog();
|
||
SuspendLayout();
|
||
//
|
||
// lblSrcFile
|
||
//
|
||
lblSrcFile.AutoSize = true;
|
||
lblSrcFile.Location = new Point(12, 15);
|
||
lblSrcFile.Name = "lblSrcFile";
|
||
lblSrcFile.Size = new Size(99, 15);
|
||
lblSrcFile.TabIndex = 0;
|
||
lblSrcFile.Text = "Исходный файл:";
|
||
//
|
||
// txtSrcFile
|
||
//
|
||
txtSrcFile.Location = new Point(117, 12);
|
||
txtSrcFile.Name = "txtSrcFile";
|
||
txtSrcFile.Size = new Size(377, 23);
|
||
txtSrcFile.TabIndex = 1;
|
||
//
|
||
// btnSrcFile
|
||
//
|
||
btnSrcFile.Location = new Point(500, 12);
|
||
btnSrcFile.Name = "btnSrcFile";
|
||
btnSrcFile.Size = new Size(79, 23);
|
||
btnSrcFile.TabIndex = 2;
|
||
btnSrcFile.Text = ". . .";
|
||
btnSrcFile.UseVisualStyleBackColor = true;
|
||
btnSrcFile.Click += btnSrcFile_Click;
|
||
//
|
||
// txtDstFile
|
||
//
|
||
txtDstFile.Location = new Point(117, 41);
|
||
txtDstFile.Name = "txtDstFile";
|
||
txtDstFile.Size = new Size(377, 23);
|
||
txtDstFile.TabIndex = 3;
|
||
//
|
||
// lblDstFile
|
||
//
|
||
lblDstFile.AutoSize = true;
|
||
lblDstFile.Location = new Point(12, 44);
|
||
lblDstFile.Name = "lblDstFile";
|
||
lblDstFile.Size = new Size(63, 15);
|
||
lblDstFile.TabIndex = 4;
|
||
lblDstFile.Text = "Результат:";
|
||
//
|
||
// btnDstFile
|
||
//
|
||
btnDstFile.Location = new Point(500, 41);
|
||
btnDstFile.Name = "btnDstFile";
|
||
btnDstFile.Size = new Size(79, 23);
|
||
btnDstFile.TabIndex = 5;
|
||
btnDstFile.Text = ". . .";
|
||
btnDstFile.UseVisualStyleBackColor = true;
|
||
btnDstFile.Click += btnDstFile_Click;
|
||
//
|
||
// btnDoIt
|
||
//
|
||
btnDoIt.Location = new Point(500, 77);
|
||
btnDoIt.Name = "btnDoIt";
|
||
btnDoIt.Size = new Size(79, 46);
|
||
btnDoIt.TabIndex = 6;
|
||
btnDoIt.Text = "DO IT";
|
||
btnDoIt.UseVisualStyleBackColor = true;
|
||
btnDoIt.Click += this.btnDoIt_Click;
|
||
//
|
||
// dlgSrcFile
|
||
//
|
||
dlgSrcFile.Filter = "Файлы JSON|*.json|Все файлы|*";
|
||
dlgSrcFile.Title = "Файл для каноникализации";
|
||
//
|
||
// dlgDstFile
|
||
//
|
||
dlgDstFile.Filter = "Файлы JSON|*.json|Все файлы|*";
|
||
dlgDstFile.Title = "Каноникализированный файл";
|
||
//
|
||
// OneFileTaskForm
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(591, 135);
|
||
Controls.Add(btnDoIt);
|
||
Controls.Add(btnDstFile);
|
||
Controls.Add(lblDstFile);
|
||
Controls.Add(txtDstFile);
|
||
Controls.Add(btnSrcFile);
|
||
Controls.Add(txtSrcFile);
|
||
Controls.Add(lblSrcFile);
|
||
FormBorderStyle = FormBorderStyle.FixedDialog;
|
||
Name = "OneFileTaskForm";
|
||
Text = "Каноникализатор JSON";
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Label lblSrcFile;
|
||
private TextBox txtSrcFile;
|
||
private Button btnSrcFile;
|
||
private TextBox txtDstFile;
|
||
private Label lblDstFile;
|
||
private Button btnDstFile;
|
||
private Button btnDoIt;
|
||
private OpenFileDialog dlgSrcFile;
|
||
private SaveFileDialog dlgDstFile;
|
||
}
|
||
}
|