-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathErrorForm.cs
118 lines (112 loc) · 3.95 KB
/
ErrorForm.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
107
108
109
110
111
112
113
114
115
116
117
118
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace PacketLogConverter
{
/// <summary>
/// Summary description for ErrorForm.
/// </summary>
public class ErrorForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Button OkButton;
public System.Windows.Forms.TextBox errorTextBox;
public System.Windows.Forms.TextBox descriptionTextBox;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public ErrorForm()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form 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()
{
this.OkButton = new System.Windows.Forms.Button();
this.errorTextBox = new System.Windows.Forms.TextBox();
this.descriptionTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// OkButton
//
this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.OkButton.Location = new System.Drawing.Point(436, 16);
this.OkButton.Name = "OkButton";
this.OkButton.TabIndex = 0;
this.OkButton.Text = "Ok";
//
// errorTextBox
//
this.errorTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.errorTextBox.Location = new System.Drawing.Point(8, 56);
this.errorTextBox.Multiline = true;
this.errorTextBox.Name = "errorTextBox";
this.errorTextBox.ReadOnly = true;
this.errorTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.errorTextBox.Size = new System.Drawing.Size(500, 208);
this.errorTextBox.TabIndex = 1;
this.errorTextBox.Text = "";
this.errorTextBox.WordWrap = false;
//
// descriptionTextBox
//
this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.descriptionTextBox.AutoSize = false;
this.descriptionTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.descriptionTextBox.HideSelection = false;
this.descriptionTextBox.Location = new System.Drawing.Point(24, 16);
this.descriptionTextBox.Multiline = true;
this.descriptionTextBox.Name = "descriptionTextBox";
this.descriptionTextBox.ReadOnly = true;
this.descriptionTextBox.Size = new System.Drawing.Size(396, 32);
this.descriptionTextBox.TabIndex = 2;
this.descriptionTextBox.Text = "";
//
// ErrorForm
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(520, 273);
this.Controls.Add(this.descriptionTextBox);
this.Controls.Add(this.errorTextBox);
this.Controls.Add(this.OkButton);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(300, 300);
this.Name = "ErrorForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Error";
this.ResumeLayout(false);
}
#endregion
}
}