summaryrefslogtreecommitdiff
path: root/script-editor/CommentForm.Designer.cs
diff options
context:
space:
mode:
authorJes <jes>2010-01-14 19:01:07 +0100
committerJes <jes>2010-01-14 19:01:07 +0100
commit78455c91b09616e2ff6713adbd6d44463a80608b (patch)
treeadf431be0dde10a2e7121348991893fd306de83a /script-editor/CommentForm.Designer.cs
parent49b3d926ea33f486468f0bc855585968eacca124 (diff)
Mise à jour de l'éditeur
Diffstat (limited to 'script-editor/CommentForm.Designer.cs')
-rw-r--r--script-editor/CommentForm.Designer.cs83
1 files changed, 83 insertions, 0 deletions
diff --git a/script-editor/CommentForm.Designer.cs b/script-editor/CommentForm.Designer.cs
new file mode 100644
index 0000000..3400912
--- /dev/null
+++ b/script-editor/CommentForm.Designer.cs
@@ -0,0 +1,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;
+ }
+} \ No newline at end of file