ivr流程编辑器

FrmIVREdit.Designer.cs 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. namespace HySoft.IVRFlowEditor
  2. {
  3. partial class FrmIVREdit
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.rtb_text = new System.Windows.Forms.RichTextBox();
  29. this.groupBox1 = new System.Windows.Forms.GroupBox();
  30. this.lv_auto = new System.Windows.Forms.ListView();
  31. this.btn_enter = new System.Windows.Forms.Button();
  32. this.btn_cancel = new System.Windows.Forms.Button();
  33. this.groupBox2 = new System.Windows.Forms.GroupBox();
  34. this.lv_system = new System.Windows.Forms.ListView();
  35. this.groupBox1.SuspendLayout();
  36. this.groupBox2.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // rtb_text
  40. //
  41. this.rtb_text.Dock = System.Windows.Forms.DockStyle.Top;
  42. this.rtb_text.Location = new System.Drawing.Point(0, 0);
  43. this.rtb_text.Name = "rtb_text";
  44. this.rtb_text.Size = new System.Drawing.Size(616, 226);
  45. this.rtb_text.TabIndex = 0;
  46. this.rtb_text.Text = "";
  47. //
  48. // groupBox1
  49. //
  50. this.groupBox1.Controls.Add(this.lv_auto);
  51. this.groupBox1.Location = new System.Drawing.Point(0, 232);
  52. this.groupBox1.Name = "groupBox1";
  53. this.groupBox1.Size = new System.Drawing.Size(230, 228);
  54. this.groupBox1.TabIndex = 1;
  55. this.groupBox1.TabStop = false;
  56. this.groupBox1.Text = "自定义变量";
  57. //
  58. // lv_auto
  59. //
  60. this.lv_auto.Dock = System.Windows.Forms.DockStyle.Fill;
  61. this.lv_auto.Location = new System.Drawing.Point(3, 17);
  62. this.lv_auto.Name = "lv_auto";
  63. this.lv_auto.Size = new System.Drawing.Size(224, 208);
  64. this.lv_auto.TabIndex = 1;
  65. this.lv_auto.UseCompatibleStateImageBehavior = false;
  66. this.lv_auto.SelectedIndexChanged += new System.EventHandler(this.SelectedIndexChanged);
  67. //
  68. // btn_enter
  69. //
  70. this.btn_enter.Location = new System.Drawing.Point(261, 249);
  71. this.btn_enter.Name = "btn_enter";
  72. this.btn_enter.Size = new System.Drawing.Size(97, 52);
  73. this.btn_enter.TabIndex = 2;
  74. this.btn_enter.Text = "确定";
  75. this.btn_enter.UseVisualStyleBackColor = true;
  76. this.btn_enter.Click += new System.EventHandler(this.btn_enter_Click);
  77. //
  78. // btn_cancel
  79. //
  80. this.btn_cancel.Location = new System.Drawing.Point(261, 318);
  81. this.btn_cancel.Name = "btn_cancel";
  82. this.btn_cancel.Size = new System.Drawing.Size(97, 52);
  83. this.btn_cancel.TabIndex = 3;
  84. this.btn_cancel.Text = "取消";
  85. this.btn_cancel.UseVisualStyleBackColor = true;
  86. this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
  87. //
  88. // groupBox2
  89. //
  90. this.groupBox2.Controls.Add(this.lv_system);
  91. this.groupBox2.Location = new System.Drawing.Point(382, 232);
  92. this.groupBox2.Name = "groupBox2";
  93. this.groupBox2.Size = new System.Drawing.Size(234, 228);
  94. this.groupBox2.TabIndex = 2;
  95. this.groupBox2.TabStop = false;
  96. this.groupBox2.Text = "系统变量";
  97. //
  98. // lv_system
  99. //
  100. this.lv_system.Dock = System.Windows.Forms.DockStyle.Fill;
  101. this.lv_system.Location = new System.Drawing.Point(3, 17);
  102. this.lv_system.Name = "lv_system";
  103. this.lv_system.Size = new System.Drawing.Size(228, 208);
  104. this.lv_system.TabIndex = 0;
  105. this.lv_system.UseCompatibleStateImageBehavior = false;
  106. this.lv_system.SelectedIndexChanged += new System.EventHandler(this.SelectedIndexChanged);
  107. //
  108. // FrmIVREdit
  109. //
  110. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  111. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  112. this.ClientSize = new System.Drawing.Size(616, 461);
  113. this.Controls.Add(this.groupBox2);
  114. this.Controls.Add(this.btn_cancel);
  115. this.Controls.Add(this.btn_enter);
  116. this.Controls.Add(this.groupBox1);
  117. this.Controls.Add(this.rtb_text);
  118. this.Name = "FrmIVREdit";
  119. this.Text = "FrmIVREdit";
  120. this.groupBox1.ResumeLayout(false);
  121. this.groupBox2.ResumeLayout(false);
  122. this.ResumeLayout(false);
  123. }
  124. #endregion
  125. private System.Windows.Forms.RichTextBox rtb_text;
  126. private System.Windows.Forms.GroupBox groupBox1;
  127. private System.Windows.Forms.Button btn_enter;
  128. private System.Windows.Forms.Button btn_cancel;
  129. private System.Windows.Forms.GroupBox groupBox2;
  130. private System.Windows.Forms.ListView lv_auto;
  131. private System.Windows.Forms.ListView lv_system;
  132. }
  133. }