-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOutputLog.Designer.cs
106 lines (100 loc) · 4.61 KB
/
OutputLog.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
namespace Script_Builder
{
partial class OutputLog
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OutputLog));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.saveOutputLog = new System.Windows.Forms.ToolStripButton();
this.clearOutputLog = new System.Windows.Forms.ToolStripButton();
this.closeOutputLog = new System.Windows.Forms.ToolStripButton();
this.txtOutputLog = new System.Windows.Forms.TextBox();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.saveOutputLog,
this.clearOutputLog,
this.closeOutputLog});
this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
this.toolStrip1.Name = "toolStrip1";
//
// saveOutputLog
//
resources.ApplyResources(this.saveOutputLog, "saveOutputLog");
this.saveOutputLog.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.saveOutputLog.Image = global::Script_Builder.Resource1.disk;
this.saveOutputLog.Name = "saveOutputLog";
this.saveOutputLog.Click += new System.EventHandler(this.saveOutputLog_Click);
//
// clearOutputLog
//
resources.ApplyResources(this.clearOutputLog, "clearOutputLog");
this.clearOutputLog.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.clearOutputLog.Image = global::Script_Builder.Resource1.page;
this.clearOutputLog.Name = "clearOutputLog";
this.clearOutputLog.Click += new System.EventHandler(this.clearOutputLog_Click);
//
// closeOutputLog
//
resources.ApplyResources(this.closeOutputLog, "closeOutputLog");
this.closeOutputLog.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.closeOutputLog.Image = global::Script_Builder.Resource1.door_in;
this.closeOutputLog.Name = "closeOutputLog";
this.closeOutputLog.Click += new System.EventHandler(this.closeOutputLog_Click);
//
// txtOutputLog
//
resources.ApplyResources(this.txtOutputLog, "txtOutputLog");
this.txtOutputLog.BackColor = System.Drawing.Color.White;
this.txtOutputLog.Name = "txtOutputLog";
this.txtOutputLog.ReadOnly = true;
//
// OutputLog
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.txtOutputLog);
this.Controls.Add(this.toolStrip1);
this.DoubleBuffered = true;
this.Name = "OutputLog";
this.ShowInTaskbar = false;
this.Shown += new System.EventHandler(this.OutputLog_Shown);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton saveOutputLog;
private System.Windows.Forms.ToolStripButton clearOutputLog;
private System.Windows.Forms.ToolStripButton closeOutputLog;
private System.Windows.Forms.TextBox txtOutputLog;
}
}