/
dikbsd
/
SharpFBTools
Обзор
Документация
Войти
/
dikbsd
/
SharpFBTools
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Source/Core/Common/CustomInfoForm.Designer.cs
145 строк
6 KB
Vadim Kuznetsov (dikbsd)
+ НОВЫЙ инструмент: Корректор в режиме Проводника. В контекстном меню – множество инструментов по правке метаданных.
25 авг 2015, 14:49
25 авг 2015, 14:49
74f08f8
Код
Авторство
О чём код?
/* * Сделано в SharpDevelop. * Пользователь: Кузнецов Вадим (DikBSD) * Дата: 02.07.2015 * Время: 8:04 * */ namespace Core.Common { partial class CustomInfoForm { /// <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(CustomInfoForm)); this.ControlPanel = new System.Windows.Forms.Panel(); this.CancelBtn = new System.Windows.Forms.Button(); this.ApplyBtn = new System.Windows.Forms.Button(); this.ValueTextBox = new System.Windows.Forms.TextBox(); this.ValueLabel = new System.Windows.Forms.Label(); this.TypeTextBox = new System.Windows.Forms.TextBox(); this.TypeLabel = new System.Windows.Forms.Label(); this.ControlPanel.SuspendLayout(); this.SuspendLayout(); // // ControlPanel // this.ControlPanel.BackColor = System.Drawing.Color.DarkGray; this.ControlPanel.Controls.Add(this.CancelBtn); this.ControlPanel.Controls.Add(this.ApplyBtn); this.ControlPanel.Dock = System.Windows.Forms.DockStyle.Right; this.ControlPanel.Location = new System.Drawing.Point(615, 0); this.ControlPanel.Name = "ControlPanel"; this.ControlPanel.Size = new System.Drawing.Size(127, 131); this.ControlPanel.TabIndex = 27; // // CancelBtn // this.CancelBtn.Dock = System.Windows.Forms.DockStyle.Bottom; this.CancelBtn.Image = ((System.Drawing.Image)(resources.GetObject("CancelBtn.Image"))); this.CancelBtn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.CancelBtn.Location = new System.Drawing.Point(0, 82); this.CancelBtn.Name = "CancelBtn"; this.CancelBtn.Size = new System.Drawing.Size(127, 49); this.CancelBtn.TabIndex = 1; this.CancelBtn.Text = "Отмена"; this.CancelBtn.UseVisualStyleBackColor = true; this.CancelBtn.Click += new System.EventHandler(this.CancelBtnClick); // // ApplyBtn // this.ApplyBtn.Dock = System.Windows.Forms.DockStyle.Top; this.ApplyBtn.Image = ((System.Drawing.Image)(resources.GetObject("ApplyBtn.Image"))); this.ApplyBtn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.ApplyBtn.Location = new System.Drawing.Point(0, 0); this.ApplyBtn.Name = "ApplyBtn"; this.ApplyBtn.Size = new System.Drawing.Size(127, 52); this.ApplyBtn.TabIndex = 0; this.ApplyBtn.Text = "Принять"; this.ApplyBtn.UseVisualStyleBackColor = true; this.ApplyBtn.Click += new System.EventHandler(this.ApplyBtnClick); // // ValueTextBox // this.ValueTextBox.Location = new System.Drawing.Point(86, 35); this.ValueTextBox.Name = "ValueTextBox"; this.ValueTextBox.Size = new System.Drawing.Size(523, 22); this.ValueTextBox.TabIndex = 24; // // ValueLabel // this.ValueLabel.Location = new System.Drawing.Point(7, 35); this.ValueLabel.Name = "ValueLabel"; this.ValueLabel.Size = new System.Drawing.Size(77, 23); this.ValueLabel.TabIndex = 26; this.ValueLabel.Text = "Значение:"; this.ValueLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // TypeTextBox // this.TypeTextBox.Location = new System.Drawing.Point(86, 7); this.TypeTextBox.Name = "TypeTextBox"; this.TypeTextBox.Size = new System.Drawing.Size(523, 22); this.TypeTextBox.TabIndex = 23; // // TypeLabel // this.TypeLabel.Location = new System.Drawing.Point(45, 7); this.TypeLabel.Name = "TypeLabel"; this.TypeLabel.Size = new System.Drawing.Size(42, 23); this.TypeLabel.TabIndex = 25; this.TypeLabel.Text = "Тип:"; this.TypeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // CustomInfoForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(742, 131); this.ControlBox = false; this.Controls.Add(this.ControlPanel); this.Controls.Add(this.ValueTextBox); this.Controls.Add(this.ValueLabel); this.Controls.Add(this.TypeTextBox); this.Controls.Add(this.TypeLabel); this.Name = "CustomInfoForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Дополнительные данные описания книги"; this.ControlPanel.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.Panel ControlPanel; private System.Windows.Forms.Button CancelBtn; private System.Windows.Forms.Button ApplyBtn; private System.Windows.Forms.TextBox ValueTextBox; private System.Windows.Forms.Label ValueLabel; private System.Windows.Forms.TextBox TypeTextBox; private System.Windows.Forms.Label TypeLabel; } }