104 lines
3.5 KiB
C#
104 lines
3.5 KiB
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Slovensko a.s.
|
|
///
|
|
namespace TBF.UI.Logs
|
|
{
|
|
partial class LogsTabPageCtrl
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogsTabPageCtrl));
|
|
this.logTextBox = new System.Windows.Forms.TextBox();
|
|
this.clearButton = new System.Windows.Forms.Button();
|
|
this.splitContainer = new System.Windows.Forms.SplitContainer();
|
|
this.logsTextBox = new System.Windows.Forms.TextBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
|
this.splitContainer.Panel1.SuspendLayout();
|
|
this.splitContainer.Panel2.SuspendLayout();
|
|
this.splitContainer.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// logTextBox
|
|
//
|
|
resources.ApplyResources(this.logTextBox, "logTextBox");
|
|
this.logTextBox.Name = "logTextBox";
|
|
//
|
|
// clearButton
|
|
//
|
|
resources.ApplyResources(this.clearButton, "clearButton");
|
|
this.clearButton.Name = "clearButton";
|
|
this.clearButton.UseVisualStyleBackColor = true;
|
|
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
|
|
//
|
|
// splitContainer
|
|
//
|
|
resources.ApplyResources(this.splitContainer, "splitContainer");
|
|
this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
|
this.splitContainer.Name = "splitContainer";
|
|
//
|
|
// splitContainer.Panel1
|
|
//
|
|
this.splitContainer.Panel1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.splitContainer.Panel1.Controls.Add(this.clearButton);
|
|
//
|
|
// splitContainer.Panel2
|
|
//
|
|
this.splitContainer.Panel2.Controls.Add(this.logsTextBox);
|
|
//
|
|
// logsTextBox
|
|
//
|
|
this.logsTextBox.BackColor = System.Drawing.SystemColors.Control;
|
|
resources.ApplyResources(this.logsTextBox, "logsTextBox");
|
|
this.logsTextBox.Name = "logsTextBox";
|
|
//
|
|
// LogsTabPageCtrl
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.Silver;
|
|
this.Controls.Add(this.splitContainer);
|
|
this.Controls.Add(this.logTextBox);
|
|
this.Name = "LogsTabPageCtrl";
|
|
this.splitContainer.Panel1.ResumeLayout(false);
|
|
this.splitContainer.Panel2.ResumeLayout(false);
|
|
this.splitContainer.Panel2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
|
this.splitContainer.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox logTextBox;
|
|
private System.Windows.Forms.Button clearButton;
|
|
private System.Windows.Forms.SplitContainer splitContainer;
|
|
private System.Windows.Forms.TextBox logsTextBox;
|
|
}
|
|
}
|