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
|
namespace VPScriptEditor
{
partial class CommentForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.richTxtComment = new System.Windows.Forms.RichTextBox();
this.bttnOK = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.richTxtComment, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.bttnOK, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(5, 5);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(636, 308);
this.tableLayoutPanel1.TabIndex = 0;
//
// richTxtComment
//
this.richTxtComment.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTxtComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTxtComment.Location = new System.Drawing.Point(3, 3);
this.richTxtComment.Name = "richTxtComment";
this.richTxtComment.Size = new System.Drawing.Size(630, 272);
this.richTxtComment.TabIndex = 0;
this.richTxtComment.Text = "";
//
// bttnOK
//
this.bttnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
this.bttnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bttnOK.Location = new System.Drawing.Point(282, 281);
this.bttnOK.Name = "bttnOK";
this.bttnOK.Size = new System.Drawing.Size(72, 24);
this.bttnOK.TabIndex = 1;
this.bttnOK.Text = "OK";
this.bttnOK.UseVisualStyleBackColor = true;
this.bttnOK.Click += new System.EventHandler(this.bttnOK_Click);
//
// CommentForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.bttnOK;
this.ClientSize = new System.Drawing.Size(646, 318);
this.Controls.Add(this.tableLayoutPanel1);
this.MinimizeBox = false;
this.Name = "CommentForm";
this.Padding = new System.Windows.Forms.Padding(5);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.RichTextBox richTxtComment;
private System.Windows.Forms.Button bttnOK;
}
}
|