| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- namespace HySoft.IVRFlowEditor
- {
- partial class FrmIVREdit
- {
- /// <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.rtb_text = new System.Windows.Forms.RichTextBox();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.lv_auto = new System.Windows.Forms.ListView();
- this.btn_enter = new System.Windows.Forms.Button();
- this.btn_cancel = new System.Windows.Forms.Button();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.lv_system = new System.Windows.Forms.ListView();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.SuspendLayout();
- //
- // rtb_text
- //
- this.rtb_text.Dock = System.Windows.Forms.DockStyle.Top;
- this.rtb_text.Location = new System.Drawing.Point(0, 0);
- this.rtb_text.Name = "rtb_text";
- this.rtb_text.Size = new System.Drawing.Size(616, 226);
- this.rtb_text.TabIndex = 0;
- this.rtb_text.Text = "";
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.lv_auto);
- this.groupBox1.Location = new System.Drawing.Point(0, 232);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(230, 228);
- this.groupBox1.TabIndex = 1;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "自定义变量";
- //
- // lv_auto
- //
- this.lv_auto.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lv_auto.Location = new System.Drawing.Point(3, 17);
- this.lv_auto.Name = "lv_auto";
- this.lv_auto.Size = new System.Drawing.Size(224, 208);
- this.lv_auto.TabIndex = 1;
- this.lv_auto.UseCompatibleStateImageBehavior = false;
- this.lv_auto.SelectedIndexChanged += new System.EventHandler(this.SelectedIndexChanged);
- //
- // btn_enter
- //
- this.btn_enter.Location = new System.Drawing.Point(261, 249);
- this.btn_enter.Name = "btn_enter";
- this.btn_enter.Size = new System.Drawing.Size(97, 52);
- this.btn_enter.TabIndex = 2;
- this.btn_enter.Text = "确定";
- this.btn_enter.UseVisualStyleBackColor = true;
- this.btn_enter.Click += new System.EventHandler(this.btn_enter_Click);
- //
- // btn_cancel
- //
- this.btn_cancel.Location = new System.Drawing.Point(261, 318);
- this.btn_cancel.Name = "btn_cancel";
- this.btn_cancel.Size = new System.Drawing.Size(97, 52);
- this.btn_cancel.TabIndex = 3;
- this.btn_cancel.Text = "取消";
- this.btn_cancel.UseVisualStyleBackColor = true;
- this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.lv_system);
- this.groupBox2.Location = new System.Drawing.Point(382, 232);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(234, 228);
- this.groupBox2.TabIndex = 2;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "系统变量";
- //
- // lv_system
- //
- this.lv_system.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lv_system.Location = new System.Drawing.Point(3, 17);
- this.lv_system.Name = "lv_system";
- this.lv_system.Size = new System.Drawing.Size(228, 208);
- this.lv_system.TabIndex = 0;
- this.lv_system.UseCompatibleStateImageBehavior = false;
- this.lv_system.SelectedIndexChanged += new System.EventHandler(this.SelectedIndexChanged);
- //
- // FrmIVREdit
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(616, 461);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.btn_cancel);
- this.Controls.Add(this.btn_enter);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.rtb_text);
- this.Name = "FrmIVREdit";
- this.Text = "FrmIVREdit";
- this.groupBox1.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.RichTextBox rtb_text;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.Button btn_enter;
- private System.Windows.Forms.Button btn_cancel;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.ListView lv_auto;
- private System.Windows.Forms.ListView lv_system;
- }
- }
|