You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
4.3 KiB
104 lines
4.3 KiB
7 years ago
|
namespace Vlimport
|
||
|
{
|
||
|
partial class mainForm
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Обязательная переменная конструктора.
|
||
|
/// </summary>
|
||
|
private System.ComponentModel.IContainer components = null;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Освободить все используемые ресурсы.
|
||
|
/// </summary>
|
||
|
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
|
protected override void Dispose(bool disposing)
|
||
|
{
|
||
|
if (disposing && (components != null))
|
||
|
{
|
||
|
components.Dispose();
|
||
|
}
|
||
|
base.Dispose(disposing);
|
||
|
}
|
||
|
|
||
|
#region Код, автоматически созданный конструктором форм Windows
|
||
|
|
||
|
/// <summary>
|
||
|
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
|
/// содержимое этого метода с помощью редактора кода.
|
||
|
/// </summary>
|
||
|
private void InitializeComponent()
|
||
|
{
|
||
|
this.ItemList = new System.Windows.Forms.ListBox();
|
||
|
this.SelectButton = new System.Windows.Forms.Button();
|
||
|
this.AcceptButton = new System.Windows.Forms.Button();
|
||
|
this.FilePathBox = new System.Windows.Forms.TextBox();
|
||
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
||
|
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
||
|
this.SuspendLayout();
|
||
|
//
|
||
|
// ItemList
|
||
|
//
|
||
|
this.ItemList.FormattingEnabled = true;
|
||
|
this.ItemList.Location = new System.Drawing.Point(13, 39);
|
||
|
this.ItemList.Name = "ItemList";
|
||
|
this.ItemList.Size = new System.Drawing.Size(529, 199);
|
||
|
this.ItemList.TabIndex = 0;
|
||
|
//
|
||
|
// SelectButton
|
||
|
//
|
||
|
this.SelectButton.Location = new System.Drawing.Point(13, 254);
|
||
|
this.SelectButton.Name = "SelectButton";
|
||
|
this.SelectButton.Size = new System.Drawing.Size(109, 23);
|
||
|
this.SelectButton.TabIndex = 1;
|
||
|
this.SelectButton.Text = "Выбрать файл";
|
||
|
this.SelectButton.UseVisualStyleBackColor = true;
|
||
|
this.SelectButton.Click += new System.EventHandler(this.SelectButton_Click);
|
||
|
//
|
||
|
// AcceptButton
|
||
|
//
|
||
|
this.AcceptButton.Location = new System.Drawing.Point(418, 253);
|
||
|
this.AcceptButton.Name = "AcceptButton";
|
||
|
this.AcceptButton.Size = new System.Drawing.Size(123, 23);
|
||
|
this.AcceptButton.TabIndex = 2;
|
||
|
this.AcceptButton.Text = "Добавить значения";
|
||
|
this.AcceptButton.UseVisualStyleBackColor = true;
|
||
|
//
|
||
|
// FilePathBox
|
||
|
//
|
||
|
this.FilePathBox.Location = new System.Drawing.Point(13, 13);
|
||
|
this.FilePathBox.Name = "FilePathBox";
|
||
|
this.FilePathBox.Size = new System.Drawing.Size(528, 20);
|
||
|
this.FilePathBox.TabIndex = 3;
|
||
|
//
|
||
|
// openFileDialog1
|
||
|
//
|
||
|
this.openFileDialog1.FileName = "openFileDialog1";
|
||
|
//
|
||
|
// mainForm
|
||
|
//
|
||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
|
this.ClientSize = new System.Drawing.Size(554, 289);
|
||
|
this.Controls.Add(this.FilePathBox);
|
||
|
this.Controls.Add(this.AcceptButton);
|
||
|
this.Controls.Add(this.SelectButton);
|
||
|
this.Controls.Add(this.ItemList);
|
||
|
this.Name = "mainForm";
|
||
|
this.Text = "Перенос значений";
|
||
|
this.ResumeLayout(false);
|
||
|
this.PerformLayout();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
private System.Windows.Forms.ListBox ItemList;
|
||
|
private System.Windows.Forms.Button SelectButton;
|
||
|
private System.Windows.Forms.Button AcceptButton;
|
||
|
private System.Windows.Forms.TextBox FilePathBox;
|
||
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
||
|
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
|
||
|
}
|
||
|
}
|
||
|
|