Menu

[r13]: / MessageBox.Designer.cs  Maximize  Restore  History

Download this file

76 lines (71 with data), 2.9 kB

 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
// File:
// Goal:
namespace StateTransitionTestCreator
{
partial class MessageBox
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.labelMessage = new System.Windows.Forms.Label();
this.buttonOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelMessage
//
this.labelMessage.Dock = System.Windows.Forms.DockStyle.Top;
this.labelMessage.Location = new System.Drawing.Point(0, 0);
this.labelMessage.Name = "labelMessage";
this.labelMessage.Size = new System.Drawing.Size(586, 41);
this.labelMessage.TabIndex = 2;
this.labelMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// buttonOK
//
this.buttonOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.buttonOK.Location = new System.Drawing.Point(253, 60);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(60, 23);
this.buttonOK.TabIndex = 3;
this.buttonOK.Text = "OK";
this.buttonOK.UseVisualStyleBackColor = true;
this.buttonOK.Click += new System.EventHandler(this.ButtonOKClick);
//
// MessageBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(586, 95);
this.ControlBox = false;
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.labelMessage);
this.Name = "MessageBox";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "Message";
this.ResumeLayout(false);
}
private System.Windows.Forms.Button buttonOK;
private System.Windows.Forms.Label labelMessage;
}
}