ivr流程编辑器

CtlIVRTransfeOut.Designer.cs 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. namespace HySoft.IVRFlowEditor.IVRControl
  2. {
  3. partial class CtlIVRTransfeOut
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.tabControl1 = new System.Windows.Forms.TabControl();
  29. this.tabPage1 = new System.Windows.Forms.TabPage();
  30. this.tb_NodeID = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.tb_NodeName = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.rtb_Note = new System.Windows.Forms.RichTextBox();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.tabPage2 = new System.Windows.Forms.TabPage();
  37. this.cmb_CalleeNumType = new System.Windows.Forms.ComboBox();
  38. this.cmb_successNextNode = new System.Windows.Forms.ComboBox();
  39. this.label3 = new System.Windows.Forms.Label();
  40. this.cmb_CalleeNum = new System.Windows.Forms.ComboBox();
  41. this.cmb_failNextNode = new System.Windows.Forms.ComboBox();
  42. this.label5 = new System.Windows.Forms.Label();
  43. this.tb_TimeOut = new System.Windows.Forms.TextBox();
  44. this.label6 = new System.Windows.Forms.Label();
  45. this.label8 = new System.Windows.Forms.Label();
  46. this.label7 = new System.Windows.Forms.Label();
  47. this.btn_cancel = new System.Windows.Forms.Button();
  48. this.btn_enter = new System.Windows.Forms.Button();
  49. this.tabControl1.SuspendLayout();
  50. this.tabPage1.SuspendLayout();
  51. this.tabPage2.SuspendLayout();
  52. this.SuspendLayout();
  53. //
  54. // tabControl1
  55. //
  56. this.tabControl1.Controls.Add(this.tabPage1);
  57. this.tabControl1.Controls.Add(this.tabPage2);
  58. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Top;
  59. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  60. this.tabControl1.Name = "tabControl1";
  61. this.tabControl1.SelectedIndex = 0;
  62. this.tabControl1.Size = new System.Drawing.Size(400, 350);
  63. this.tabControl1.TabIndex = 31;
  64. //
  65. // tabPage1
  66. //
  67. this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
  68. this.tabPage1.Controls.Add(this.tb_NodeID);
  69. this.tabPage1.Controls.Add(this.label1);
  70. this.tabPage1.Controls.Add(this.tb_NodeName);
  71. this.tabPage1.Controls.Add(this.label2);
  72. this.tabPage1.Controls.Add(this.rtb_Note);
  73. this.tabPage1.Controls.Add(this.label4);
  74. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  75. this.tabPage1.Name = "tabPage1";
  76. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  77. this.tabPage1.Size = new System.Drawing.Size(392, 324);
  78. this.tabPage1.TabIndex = 0;
  79. this.tabPage1.Text = "一般设置";
  80. //
  81. // tb_NodeID
  82. //
  83. this.tb_NodeID.Enabled = false;
  84. this.tb_NodeID.Location = new System.Drawing.Point(127, 30);
  85. this.tb_NodeID.Name = "tb_NodeID";
  86. this.tb_NodeID.Size = new System.Drawing.Size(194, 21);
  87. this.tb_NodeID.TabIndex = 11;
  88. //
  89. // label1
  90. //
  91. this.label1.AutoSize = true;
  92. this.label1.Location = new System.Drawing.Point(56, 66);
  93. this.label1.Name = "label1";
  94. this.label1.Size = new System.Drawing.Size(53, 12);
  95. this.label1.TabIndex = 8;
  96. this.label1.Text = "节点名称";
  97. //
  98. // tb_NodeName
  99. //
  100. this.tb_NodeName.Location = new System.Drawing.Point(127, 62);
  101. this.tb_NodeName.Name = "tb_NodeName";
  102. this.tb_NodeName.Size = new System.Drawing.Size(194, 21);
  103. this.tb_NodeName.TabIndex = 9;
  104. //
  105. // label2
  106. //
  107. this.label2.AutoSize = true;
  108. this.label2.Location = new System.Drawing.Point(56, 34);
  109. this.label2.Name = "label2";
  110. this.label2.Size = new System.Drawing.Size(53, 12);
  111. this.label2.TabIndex = 10;
  112. this.label2.Text = "节点编号";
  113. //
  114. // rtb_Note
  115. //
  116. this.rtb_Note.Location = new System.Drawing.Point(127, 98);
  117. this.rtb_Note.Name = "rtb_Note";
  118. this.rtb_Note.Size = new System.Drawing.Size(194, 114);
  119. this.rtb_Note.TabIndex = 15;
  120. this.rtb_Note.Text = "";
  121. //
  122. // label4
  123. //
  124. this.label4.AutoSize = true;
  125. this.label4.Location = new System.Drawing.Point(80, 98);
  126. this.label4.Name = "label4";
  127. this.label4.Size = new System.Drawing.Size(29, 12);
  128. this.label4.TabIndex = 14;
  129. this.label4.Text = "描述";
  130. //
  131. // tabPage2
  132. //
  133. this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
  134. this.tabPage2.Controls.Add(this.cmb_CalleeNumType);
  135. this.tabPage2.Controls.Add(this.cmb_successNextNode);
  136. this.tabPage2.Controls.Add(this.label3);
  137. this.tabPage2.Controls.Add(this.cmb_CalleeNum);
  138. this.tabPage2.Controls.Add(this.cmb_failNextNode);
  139. this.tabPage2.Controls.Add(this.label5);
  140. this.tabPage2.Controls.Add(this.tb_TimeOut);
  141. this.tabPage2.Controls.Add(this.label6);
  142. this.tabPage2.Controls.Add(this.label8);
  143. this.tabPage2.Controls.Add(this.label7);
  144. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  145. this.tabPage2.Name = "tabPage2";
  146. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  147. this.tabPage2.Size = new System.Drawing.Size(392, 324);
  148. this.tabPage2.TabIndex = 1;
  149. this.tabPage2.Text = "呼叫转移设置";
  150. //
  151. // cmb_CalleeNumType
  152. //
  153. this.cmb_CalleeNumType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  154. this.cmb_CalleeNumType.FormattingEnabled = true;
  155. this.cmb_CalleeNumType.Location = new System.Drawing.Point(147, 41);
  156. this.cmb_CalleeNumType.Name = "cmb_CalleeNumType";
  157. this.cmb_CalleeNumType.Size = new System.Drawing.Size(194, 20);
  158. this.cmb_CalleeNumType.TabIndex = 24;
  159. this.cmb_CalleeNumType.SelectedIndexChanged += new System.EventHandler(this.cmb_CalleeNumType_SelectedIndexChanged);
  160. //
  161. // cmb_successNextNode
  162. //
  163. this.cmb_successNextNode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  164. this.cmb_successNextNode.FormattingEnabled = true;
  165. this.cmb_successNextNode.Location = new System.Drawing.Point(147, 130);
  166. this.cmb_successNextNode.Name = "cmb_successNextNode";
  167. this.cmb_successNextNode.Size = new System.Drawing.Size(194, 20);
  168. this.cmb_successNextNode.TabIndex = 12;
  169. //
  170. // label3
  171. //
  172. this.label3.AutoSize = true;
  173. this.label3.Location = new System.Drawing.Point(40, 133);
  174. this.label3.Name = "label3";
  175. this.label3.Size = new System.Drawing.Size(89, 12);
  176. this.label3.TabIndex = 13;
  177. this.label3.Text = "成功后下一端口";
  178. //
  179. // cmb_CalleeNum
  180. //
  181. this.cmb_CalleeNum.FormattingEnabled = true;
  182. this.cmb_CalleeNum.Location = new System.Drawing.Point(147, 71);
  183. this.cmb_CalleeNum.Name = "cmb_CalleeNum";
  184. this.cmb_CalleeNum.Size = new System.Drawing.Size(194, 20);
  185. this.cmb_CalleeNum.TabIndex = 25;
  186. //
  187. // cmb_failNextNode
  188. //
  189. this.cmb_failNextNode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  190. this.cmb_failNextNode.FormattingEnabled = true;
  191. this.cmb_failNextNode.Location = new System.Drawing.Point(147, 164);
  192. this.cmb_failNextNode.Name = "cmb_failNextNode";
  193. this.cmb_failNextNode.Size = new System.Drawing.Size(194, 20);
  194. this.cmb_failNextNode.TabIndex = 16;
  195. //
  196. // label5
  197. //
  198. this.label5.AutoSize = true;
  199. this.label5.Location = new System.Drawing.Point(40, 167);
  200. this.label5.Name = "label5";
  201. this.label5.Size = new System.Drawing.Size(89, 12);
  202. this.label5.TabIndex = 17;
  203. this.label5.Text = "失败后下一端口";
  204. //
  205. // tb_TimeOut
  206. //
  207. this.tb_TimeOut.Location = new System.Drawing.Point(147, 101);
  208. this.tb_TimeOut.Name = "tb_TimeOut";
  209. this.tb_TimeOut.Size = new System.Drawing.Size(194, 21);
  210. this.tb_TimeOut.TabIndex = 23;
  211. //
  212. // label6
  213. //
  214. this.label6.AutoSize = true;
  215. this.label6.Location = new System.Drawing.Point(52, 44);
  216. this.label6.Name = "label6";
  217. this.label6.Size = new System.Drawing.Size(77, 12);
  218. this.label6.TabIndex = 18;
  219. this.label6.Text = "被叫字段类型";
  220. //
  221. // label8
  222. //
  223. this.label8.AutoSize = true;
  224. this.label8.Location = new System.Drawing.Point(52, 103);
  225. this.label8.Name = "label8";
  226. this.label8.Size = new System.Drawing.Size(77, 12);
  227. this.label8.TabIndex = 22;
  228. this.label8.Text = "外呼超时时间";
  229. //
  230. // label7
  231. //
  232. this.label7.AutoSize = true;
  233. this.label7.Location = new System.Drawing.Point(52, 74);
  234. this.label7.Name = "label7";
  235. this.label7.Size = new System.Drawing.Size(77, 12);
  236. this.label7.TabIndex = 20;
  237. this.label7.Text = "被叫号码字段";
  238. //
  239. // btn_cancel
  240. //
  241. this.btn_cancel.Location = new System.Drawing.Point(270, 359);
  242. this.btn_cancel.Name = "btn_cancel";
  243. this.btn_cancel.Size = new System.Drawing.Size(75, 23);
  244. this.btn_cancel.TabIndex = 30;
  245. this.btn_cancel.Text = "取消";
  246. this.btn_cancel.UseVisualStyleBackColor = true;
  247. this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
  248. //
  249. // btn_enter
  250. //
  251. this.btn_enter.Location = new System.Drawing.Point(151, 359);
  252. this.btn_enter.Name = "btn_enter";
  253. this.btn_enter.Size = new System.Drawing.Size(75, 23);
  254. this.btn_enter.TabIndex = 29;
  255. this.btn_enter.Text = "确定";
  256. this.btn_enter.UseVisualStyleBackColor = true;
  257. this.btn_enter.Click += new System.EventHandler(this.btn_enter_Click);
  258. //
  259. // CtlIVRTransfeOut
  260. //
  261. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  262. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  263. this.Controls.Add(this.tabControl1);
  264. this.Controls.Add(this.btn_cancel);
  265. this.Controls.Add(this.btn_enter);
  266. this.Name = "CtlIVRTransfeOut";
  267. this.Size = new System.Drawing.Size(400, 400);
  268. this.tabControl1.ResumeLayout(false);
  269. this.tabPage1.ResumeLayout(false);
  270. this.tabPage1.PerformLayout();
  271. this.tabPage2.ResumeLayout(false);
  272. this.tabPage2.PerformLayout();
  273. this.ResumeLayout(false);
  274. }
  275. #endregion
  276. private System.Windows.Forms.TabControl tabControl1;
  277. private System.Windows.Forms.TabPage tabPage1;
  278. private System.Windows.Forms.TextBox tb_NodeID;
  279. private System.Windows.Forms.Label label1;
  280. private System.Windows.Forms.TextBox tb_NodeName;
  281. private System.Windows.Forms.Label label2;
  282. private System.Windows.Forms.RichTextBox rtb_Note;
  283. private System.Windows.Forms.Label label4;
  284. private System.Windows.Forms.TabPage tabPage2;
  285. private System.Windows.Forms.ComboBox cmb_CalleeNumType;
  286. private System.Windows.Forms.ComboBox cmb_successNextNode;
  287. private System.Windows.Forms.Label label3;
  288. private System.Windows.Forms.ComboBox cmb_CalleeNum;
  289. private System.Windows.Forms.ComboBox cmb_failNextNode;
  290. private System.Windows.Forms.Label label5;
  291. private System.Windows.Forms.TextBox tb_TimeOut;
  292. private System.Windows.Forms.Label label6;
  293. private System.Windows.Forms.Label label8;
  294. private System.Windows.Forms.Label label7;
  295. private System.Windows.Forms.Button btn_cancel;
  296. private System.Windows.Forms.Button btn_enter;
  297. }
  298. }