/
dikbsd
/
SharpFBTools
Обзор
Документация
Войти
/
dikbsd
/
SharpFBTools
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Source/Core/Corrector/CopyMoveDeleteForm.Designer.cs
119 строк
5 KB
Vadim Kuznetsov (dikbsd)
Валидатор:
02 дек 2015, 13:27
02 дек 2015, 13:27
14c2f0d
Код
Авторство
О чём код?
/* * Сделано в SharpDevelop. * Пользователь: Кузнецов Вадим (DikBSD) * Дата: 30.07.2015 * Время: 7:07 * * License: GPL 2.1 */ namespace Core.Corrector { partial class CopyMoveDeleteForm { /// <summary> /// Designer variable used to keep track of non-visual components. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Disposes resources used by the form. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// <summary> /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CopyMoveDeleteForm)); this.ProgressPanel = new System.Windows.Forms.Panel(); this.ProgressBar = new System.Windows.Forms.ProgressBar(); this.ControlPanel = new System.Windows.Forms.Panel(); this.btnStop = new System.Windows.Forms.Button(); this.ProgressPanel.SuspendLayout(); this.ControlPanel.SuspendLayout(); this.SuspendLayout(); // // ProgressPanel // this.ProgressPanel.Controls.Add(this.ProgressBar); this.ProgressPanel.Dock = System.Windows.Forms.DockStyle.Left; this.ProgressPanel.Location = new System.Drawing.Point(0, 0); this.ProgressPanel.Margin = new System.Windows.Forms.Padding(4); this.ProgressPanel.Name = "ProgressPanel"; this.ProgressPanel.Size = new System.Drawing.Size(688, 73); this.ProgressPanel.TabIndex = 3; // // ProgressBar // this.ProgressBar.Location = new System.Drawing.Point(16, 15); this.ProgressBar.Margin = new System.Windows.Forms.Padding(4); this.ProgressBar.Name = "ProgressBar"; this.ProgressBar.Size = new System.Drawing.Size(653, 44); this.ProgressBar.TabIndex = 0; // // ControlPanel // this.ControlPanel.Controls.Add(this.btnStop); this.ControlPanel.Dock = System.Windows.Forms.DockStyle.Right; this.ControlPanel.Location = new System.Drawing.Point(684, 0); this.ControlPanel.Margin = new System.Windows.Forms.Padding(4); this.ControlPanel.Name = "ControlPanel"; this.ControlPanel.Size = new System.Drawing.Size(208, 73); this.ControlPanel.TabIndex = 4; // // btnStop // this.btnStop.Dock = System.Windows.Forms.DockStyle.Top; this.btnStop.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.btnStop.Image = ((System.Drawing.Image)(resources.GetObject("btnStop.Image"))); this.btnStop.Location = new System.Drawing.Point(0, 0); this.btnStop.Margin = new System.Windows.Forms.Padding(4); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(208, 71); this.btnStop.TabIndex = 0; this.btnStop.Text = "Прервать"; this.btnStop.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.btnStop.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.BtnStopClick); // // CopyMoveDeleteForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(892, 73); this.ControlBox = false; this.Controls.Add(this.ControlPanel); this.Controls.Add(this.ProgressPanel); this.MaximizeBox = false; this.MaximumSize = new System.Drawing.Size(910, 118); this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(910, 118); this.Name = "CopyMoveDeleteForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Работа с помеченными книгами"; this.ProgressPanel.ResumeLayout(false); this.ControlPanel.ResumeLayout(false); this.ResumeLayout(false); } private System.Windows.Forms.Panel ControlPanel; private System.Windows.Forms.Button btnStop; private System.Windows.Forms.Panel ProgressPanel; private System.Windows.Forms.ProgressBar ProgressBar; } }