namespace Vlimport { partial class mainForm { /// /// Обязательная переменная конструктора. /// private System.ComponentModel.IContainer components = null; /// /// Освободить все используемые ресурсы. /// /// истинно, если управляемый ресурс должен быть удален; иначе ложно. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Код, автоматически созданный конструктором форм Windows /// /// Требуемый метод для поддержки конструктора — не изменяйте /// содержимое этого метода с помощью редактора кода. /// 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; this.AcceptButton.Click += new System.EventHandler(this.AcceptButton_Click); // // 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.MaximizeBox = false; this.MinimizeBox = false; 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; } }