Загрузка данных
namespace UltraConvert
{
partial class Form1
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.btnSelectFiles = new System.Windows.Forms.Button();
this.listBoxQueue = new System.Windows.Forms.ListBox();
this.comboBoxFormats = new System.Windows.Forms.ComboBox();
this.btnConvert = new System.Windows.Forms.Button();
this.lblStatus = new System.Windows.Forms.Label();
this.btnClear = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnSelectFiles
//
this.btnSelectFiles.Location = new System.Drawing.Point(12, 12);
this.btnSelectFiles.Name = "btnSelectFiles";
this.btnSelectFiles.Size = new System.Drawing.Size(150, 35);
this.btnSelectFiles.TabIndex = 0;
this.btnSelectFiles.Text = "Выбрать файлы";
this.btnSelectFiles.Click += new System.EventHandler(this.btnSelectFiles_Click);
//
// listBoxQueue
//
this.listBoxQueue.FormattingEnabled = true;
this.listBoxQueue.ItemHeight = 15;
this.listBoxQueue.Location = new System.Drawing.Point(12, 53);
this.listBoxQueue.Name = "listBoxQueue";
this.listBoxQueue.Size = new System.Drawing.Size(460, 139);
this.listBoxQueue.TabIndex = 1;
//
// comboBoxFormats
//
this.comboBoxFormats.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxFormats.FormattingEnabled = true;
this.comboBoxFormats.Items.AddRange(new object[] {
"В JPEG (Фото)",
"В PDF (Документы/Презентации)",
"В MP3 (Видео)",
"Извлечь фото (PPTX)"});
this.comboBoxFormats.Location = new System.Drawing.Point(12, 205);
this.comboBoxFormats.Name = "comboBoxFormats";
this.comboBoxFormats.Size = new System.Drawing.Size(200, 23);
this.comboBoxFormats.TabIndex = 2;
this.comboBoxFormats.SelectedIndex = 0;
//
// btnConvert
//
this.btnConvert.Location = new System.Drawing.Point(220, 201);
this.btnConvert.Name = "btnConvert";
this.btnConvert.Size = new System.Drawing.Size(252, 35);
this.btnConvert.TabIndex = 3;
this.btnConvert.Text = "КОНВЕРТИРОВАТЬ";
this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
//
// lblStatus
//
this.lblStatus.AutoSize = true;
this.lblStatus.Location = new System.Drawing.Point(12, 250);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(107, 15);
this.lblStatus.TabIndex = 4;
this.lblStatus.Text = "Статус: Ожидание";
//
// btnClear
//
this.btnClear.Location = new System.Drawing.Point(372, 12);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(100, 35);
this.btnClear.TabIndex = 5;
this.btnClear.Text = "Очистить";
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// Form1
//
this.ClientSize = new System.Drawing.Size(484, 281);
this.Controls.Add(this.btnClear);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.btnConvert);
this.Controls.Add(this.comboBoxFormats);
this.Controls.Add(this.listBoxQueue);
this.Controls.Add(this.btnSelectFiles);
this.Name = "Form1";
this.Text = "Universal Converter v1 (NET 8 Port)";
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Button btnSelectFiles;
private System.Windows.Forms.ListBox listBoxQueue;
private System.Windows.Forms.ComboBox comboBoxFormats;
private System.Windows.Forms.Button btnConvert;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.Button btnClear;
}
}