110 lines
5.3 KiB
C#
110 lines
5.3 KiB
C#
namespace Remontor
|
||
{
|
||
partial class FlowContainer
|
||
{
|
||
/// <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 Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.HistoryPanel = new System.Windows.Forms.FlowLayoutPanel();
|
||
this.BtSave = new System.Windows.Forms.Button();
|
||
this.tableLayoutPanel1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// tableLayoutPanel1
|
||
//
|
||
this.tableLayoutPanel1.BackColor = System.Drawing.SystemColors.Control;
|
||
this.tableLayoutPanel1.ColumnCount = 1;
|
||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||
this.tableLayoutPanel1.Controls.Add(this.BtSave, 0, 2);
|
||
this.tableLayoutPanel1.Controls.Add(this.HistoryPanel, 0, 1);
|
||
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 0);
|
||
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.tableLayoutPanel1.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
|
||
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||
this.tableLayoutPanel1.RowCount = 3;
|
||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
|
||
this.tableLayoutPanel1.Size = new System.Drawing.Size(330, 781);
|
||
this.tableLayoutPanel1.TabIndex = 1;
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Location = new System.Drawing.Point(6, 3);
|
||
this.label2.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(120, 13);
|
||
this.label2.TabIndex = 3;
|
||
this.label2.Text = "История подключений";
|
||
//
|
||
// HistoryPanel
|
||
//
|
||
this.HistoryPanel.AutoScroll = true;
|
||
this.HistoryPanel.BackColor = System.Drawing.SystemColors.Window;
|
||
this.HistoryPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
||
this.HistoryPanel.Location = new System.Drawing.Point(3, 23);
|
||
this.HistoryPanel.Name = "HistoryPanel";
|
||
this.HistoryPanel.Size = new System.Drawing.Size(324, 725);
|
||
this.HistoryPanel.TabIndex = 6;
|
||
//
|
||
// BtSave
|
||
//
|
||
this.BtSave.Location = new System.Drawing.Point(3, 754);
|
||
this.BtSave.Name = "BtSave";
|
||
this.BtSave.Size = new System.Drawing.Size(323, 24);
|
||
this.BtSave.TabIndex = 7;
|
||
this.BtSave.Text = "Очистить историю";
|
||
this.BtSave.UseVisualStyleBackColor = true;
|
||
this.BtSave.Click += new System.EventHandler(this.BtSave_Click);
|
||
//
|
||
// FlowContainer
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.BackColor = System.Drawing.SystemColors.Control;
|
||
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
|
||
this.Controls.Add(this.tableLayoutPanel1);
|
||
this.Name = "FlowContainer";
|
||
this.Size = new System.Drawing.Size(330, 781);
|
||
this.tableLayoutPanel1.ResumeLayout(false);
|
||
this.tableLayoutPanel1.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.FlowLayoutPanel HistoryPanel;
|
||
private System.Windows.Forms.Button BtSave;
|
||
}
|
||
}
|