-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomMsgBox.Designer.cs
162 lines (159 loc) · 7.29 KB
/
CustomMsgBox.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
partial class CustomMsgBoxForm {
/// <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 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.splitContainer = new System.Windows.Forms.SplitContainer();
this.txtMain = new System.Windows.Forms.TextBox();
this.pbxMain = new System.Windows.Forms.PictureBox();
this.btnAccept = new System.Windows.Forms.Button();
this.btnAnswerMid = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pbxMain)).BeginInit();
this.SuspendLayout();
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitContainer.IsSplitterFixed = true;
this.splitContainer.Location = new System.Drawing.Point(0, 0);
this.splitContainer.Name = "splitContainer";
this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.BackColor = System.Drawing.SystemColors.Window;
this.splitContainer.Panel1.Controls.Add(this.txtMain);
this.splitContainer.Panel1.Controls.Add(this.pbxMain);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.btnAccept);
this.splitContainer.Panel2.Controls.Add(this.btnAnswerMid);
this.splitContainer.Panel2.Controls.Add(this.btnCancel);
this.splitContainer.Size = new System.Drawing.Size(405, 123);
this.splitContainer.SplitterDistance = 78;
this.splitContainer.SplitterWidth = 1;
this.splitContainer.TabIndex = 0;
//
// txtMain
//
this.txtMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
this.txtMain.BackColor = System.Drawing.SystemColors.Window;
this.txtMain.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtMain.Location = new System.Drawing.Point(59, 34);
this.txtMain.MaximumSize = new System.Drawing.Size(334, 0);
this.txtMain.MinimumSize = new System.Drawing.Size(334, 13);
this.txtMain.Multiline = true;
this.txtMain.Name = "txtMain";
this.txtMain.ReadOnly = true;
this.txtMain.Size = new System.Drawing.Size(334, 13);
this.txtMain.TabIndex = 0;
this.txtMain.Text = "text";
//
// pbxMain
//
this.pbxMain.Location = new System.Drawing.Point(21, 25);
this.pbxMain.Name = "pbxMain";
this.pbxMain.Size = new System.Drawing.Size(32, 32);
this.pbxMain.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbxMain.TabIndex = 0;
this.pbxMain.TabStop = false;
//
// btnAccept
//
this.btnAccept.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.btnAccept.AutoSize = true;
this.btnAccept.Location = new System.Drawing.Point(156, 8);
this.btnAccept.Name = "btnAccept";
this.btnAccept.Size = new System.Drawing.Size(75, 23);
this.btnAccept.TabIndex = 0;
this.btnAccept.Text = "Yes";
this.btnAccept.UseVisualStyleBackColor = true;
this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click);
//
// btnAnswerMid
//
this.btnAnswerMid.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.btnAnswerMid.AutoSize = true;
this.btnAnswerMid.Location = new System.Drawing.Point(237, 8);
this.btnAnswerMid.Name = "btnAnswerMid";
this.btnAnswerMid.Size = new System.Drawing.Size(75, 23);
this.btnAnswerMid.TabIndex = 1;
this.btnAnswerMid.Text = "No";
this.btnAnswerMid.UseVisualStyleBackColor = true;
this.btnAnswerMid.Click += new System.EventHandler(this.btnAnswerMid_Click);
//
// btnCancel
//
this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.btnCancel.AutoSize = true;
this.btnCancel.Location = new System.Drawing.Point(318, 8);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// DotNetCore fixes
//
#if NETCOREAPP
this.btnAccept.Location = new System.Drawing.Point(156, 11);
this.btnAnswerMid.Location = new System.Drawing.Point(237, 11);
this.btnCancel.Location = new System.Drawing.Point(318, 11);
#endif
//
// CustomMsgBoxForm
//
this.AcceptButton = this.btnAccept;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(405, 123);
this.Controls.Add(this.splitContainer);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CustomMsgBoxForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Load += new System.EventHandler(this.CustomMsgBoxForm_Load);
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel1.PerformLayout();
this.splitContainer.Panel2.ResumeLayout(false);
this.splitContainer.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
this.splitContainer.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pbxMain)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnAnswerMid;
private System.Windows.Forms.Button btnAccept;
private System.Windows.Forms.PictureBox pbxMain;
private System.Windows.Forms.TextBox txtMain;
}