133 lines
5.2 KiB
C#
133 lines
5.2 KiB
C#
namespace NodesGenerator
|
|
{
|
|
partial class method_editor
|
|
{
|
|
/// <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.help_context = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.method_code = new System.Windows.Forms.TextBox();
|
|
this.OK = new System.Windows.Forms.Button();
|
|
this.Cancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// help_context
|
|
//
|
|
this.help_context.Location = new System.Drawing.Point(12, 297);
|
|
this.help_context.Multiline = true;
|
|
this.help_context.Name = "help_context";
|
|
this.help_context.Size = new System.Drawing.Size(444, 92);
|
|
this.help_context.TabIndex = 17;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.Location = new System.Drawing.Point(59, -17);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(120, 18);
|
|
this.label2.TabIndex = 9;
|
|
this.label2.Text = "Field type";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Location = new System.Drawing.Point(13, 11);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(120, 18);
|
|
this.label1.TabIndex = 13;
|
|
this.label1.Text = "Код метода";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.Location = new System.Drawing.Point(13, 275);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(120, 18);
|
|
this.label3.TabIndex = 14;
|
|
this.label3.Text = "Help Context";
|
|
//
|
|
// method_code
|
|
//
|
|
this.method_code.Location = new System.Drawing.Point(12, 32);
|
|
this.method_code.Multiline = true;
|
|
this.method_code.Name = "method_code";
|
|
this.method_code.Size = new System.Drawing.Size(444, 239);
|
|
this.method_code.TabIndex = 15;
|
|
//
|
|
// OK
|
|
//
|
|
this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.OK.Location = new System.Drawing.Point(261, 407);
|
|
this.OK.Name = "OK";
|
|
this.OK.Size = new System.Drawing.Size(90, 27);
|
|
this.OK.TabIndex = 16;
|
|
this.OK.Text = "OK";
|
|
this.OK.UseVisualStyleBackColor = true;
|
|
this.OK.Click += new System.EventHandler(this.ok_Click);
|
|
//
|
|
// Cancel
|
|
//
|
|
this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.Cancel.Location = new System.Drawing.Point(366, 407);
|
|
this.Cancel.Name = "Cancel";
|
|
this.Cancel.Size = new System.Drawing.Size(90, 27);
|
|
this.Cancel.TabIndex = 17;
|
|
this.Cancel.Text = "Cancel";
|
|
this.Cancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// method_editor
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.Cancel;
|
|
this.ClientSize = new System.Drawing.Size(468, 448);
|
|
this.Controls.Add(this.Cancel);
|
|
this.Controls.Add(this.OK);
|
|
this.Controls.Add(this.method_code);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.help_context);
|
|
this.Controls.Add(this.label2);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "method_editor";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Редактор методов";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox help_context;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox method_code;
|
|
private System.Windows.Forms.Button OK;
|
|
private System.Windows.Forms.Button Cancel;
|
|
}
|
|
} |