-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathErrorForm.designer.cs
89 lines (83 loc) · 3.49 KB
/
ErrorForm.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
namespace Qemu_GUI
{
partial class ErrorForm
{
/// <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()
{
this.txtError = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.error_copy = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtError
//
this.txtError.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
this.txtError.Location = new System.Drawing.Point(12, 12);
this.txtError.Multiline = true;
this.txtError.Name = "txtError";
this.txtError.Size = new System.Drawing.Size(638, 267);
this.txtError.TabIndex = 0;
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(557, 285);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(93, 23);
this.btnOK.TabIndex = 5;
this.btnOK.Text = "OK";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// error_copy
//
this.error_copy.Location = new System.Drawing.Point(12, 285);
this.error_copy.Name = "error_copy";
this.error_copy.Size = new System.Drawing.Size(134, 23);
this.error_copy.TabIndex = 6;
this.error_copy.Text = "Copy to clipboard";
this.error_copy.UseVisualStyleBackColor = true;
this.error_copy.Click += new System.EventHandler(this.error_copy_Click);
//
// frmError
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(662, 320);
this.ControlBox = false;
this.Controls.Add(this.error_copy);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.txtError);
this.Name = "frmError";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Error";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnOK;
public System.Windows.Forms.TextBox txtError;
private System.Windows.Forms.Button error_copy;
}
}