FormToolBox.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. namespace CreateTool
  2. {
  3. partial class FormToolBox
  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.components = new System.ComponentModel.Container();
  29. System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("流程", 1, 1);
  30. System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Halcon窗口", 3, 3);
  31. System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Basler");
  32. System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("HIKVision");
  33. System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("获取图像", new System.Windows.Forms.TreeNode[] {
  34. treeNode2,
  35. treeNode3,
  36. treeNode4});
  37. System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("滤波");
  38. System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("平滑");
  39. System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("去噪");
  40. System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("图像预处理", new System.Windows.Forms.TreeNode[] {
  41. treeNode6,
  42. treeNode7,
  43. treeNode8});
  44. System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("形状匹配");
  45. System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("可变形匹配");
  46. System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("灰度匹配");
  47. System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("匹配", new System.Windows.Forms.TreeNode[] {
  48. treeNode10,
  49. treeNode11,
  50. treeNode12});
  51. System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("找线");
  52. System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("找圆");
  53. System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("卡尺");
  54. System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("几何", new System.Windows.Forms.TreeNode[] {
  55. treeNode14,
  56. treeNode15,
  57. treeNode16});
  58. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormToolBox));
  59. this.tvw_ToolBox = new System.Windows.Forms.TreeView();
  60. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  61. this.richTextBoxEx1 = new DevComponents.DotNetBar.Controls.RichTextBoxEx();
  62. this.imageListTool = new System.Windows.Forms.ImageList(this.components);
  63. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  64. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  65. this.splitContainer1.Panel1.SuspendLayout();
  66. this.splitContainer1.Panel2.SuspendLayout();
  67. this.splitContainer1.SuspendLayout();
  68. this.SuspendLayout();
  69. //
  70. // tvw_ToolBox
  71. //
  72. this.tvw_ToolBox.Dock = System.Windows.Forms.DockStyle.Fill;
  73. this.tvw_ToolBox.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  74. this.tvw_ToolBox.ImageIndex = 4;
  75. this.tvw_ToolBox.ImageList = this.imageList1;
  76. this.tvw_ToolBox.Indent = 32;
  77. this.tvw_ToolBox.Location = new System.Drawing.Point(0, 0);
  78. this.tvw_ToolBox.Name = "tvw_ToolBox";
  79. treeNode1.ImageIndex = 1;
  80. treeNode1.Name = "NodeJob";
  81. treeNode1.SelectedImageIndex = 1;
  82. treeNode1.Text = "流程";
  83. treeNode2.ImageIndex = 3;
  84. treeNode2.Name = "节点1";
  85. treeNode2.SelectedImageIndex = 3;
  86. treeNode2.Tag = "HalconTool";
  87. treeNode2.Text = "Halcon窗口";
  88. treeNode3.ImageKey = "图像.png";
  89. treeNode3.Name = "节点2";
  90. treeNode3.SelectedImageIndex = 3;
  91. treeNode3.Text = "Basler";
  92. treeNode4.ImageKey = "图像.png";
  93. treeNode4.Name = "节点3";
  94. treeNode4.SelectedImageIndex = 3;
  95. treeNode4.Text = "HIKVision";
  96. treeNode5.ImageIndex = 4;
  97. treeNode5.Name = "节点0";
  98. treeNode5.Text = "获取图像";
  99. treeNode6.Name = "节点5";
  100. treeNode6.Text = "滤波";
  101. treeNode7.Name = "节点6";
  102. treeNode7.Text = "平滑";
  103. treeNode8.Name = "节点7";
  104. treeNode8.Text = "去噪";
  105. treeNode9.Name = "节点4";
  106. treeNode9.Text = "图像预处理";
  107. treeNode10.Name = "节点9";
  108. treeNode10.Text = "形状匹配";
  109. treeNode11.Name = "节点10";
  110. treeNode11.Text = "可变形匹配";
  111. treeNode12.Name = "节点11";
  112. treeNode12.Text = "灰度匹配";
  113. treeNode13.Name = "节点8";
  114. treeNode13.Text = "匹配";
  115. treeNode14.ImageKey = "Line.png";
  116. treeNode14.Name = "FindLine";
  117. treeNode14.SelectedImageKey = "Line.png";
  118. treeNode14.Tag = "FindLine";
  119. treeNode14.Text = "找线";
  120. treeNode15.ImageKey = "Circle.png";
  121. treeNode15.Name = "FindCircle";
  122. treeNode15.SelectedImageKey = "Circle.png";
  123. treeNode15.Text = "找圆";
  124. treeNode16.ImageKey = "卡尺.png";
  125. treeNode16.Name = "Caliper";
  126. treeNode16.SelectedImageKey = "卡尺.png";
  127. treeNode16.Tag = "Caliper";
  128. treeNode16.Text = "卡尺";
  129. treeNode17.Name = "节点0";
  130. treeNode17.Text = "几何";
  131. this.tvw_ToolBox.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
  132. treeNode1,
  133. treeNode5,
  134. treeNode9,
  135. treeNode13,
  136. treeNode17});
  137. this.tvw_ToolBox.SelectedImageIndex = 4;
  138. this.tvw_ToolBox.Size = new System.Drawing.Size(417, 543);
  139. this.tvw_ToolBox.TabIndex = 1;
  140. this.tvw_ToolBox.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvw_ToolBox_AfterSelect);
  141. this.tvw_ToolBox.Click += new System.EventHandler(this.tvw_ToolBox_Click);
  142. this.tvw_ToolBox.DoubleClick += new System.EventHandler(this.tvw_ToolBox_DoubleClick);
  143. //
  144. // imageList1
  145. //
  146. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  147. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  148. this.imageList1.Images.SetKeyName(0, "镜头.png");
  149. this.imageList1.Images.SetKeyName(1, "流程.png");
  150. this.imageList1.Images.SetKeyName(2, "流程图.png");
  151. this.imageList1.Images.SetKeyName(3, "图像.png");
  152. this.imageList1.Images.SetKeyName(4, "文件夹.png");
  153. this.imageList1.Images.SetKeyName(5, "Line.png");
  154. this.imageList1.Images.SetKeyName(6, "Circle.png");
  155. this.imageList1.Images.SetKeyName(7, "卡尺.png");
  156. //
  157. // richTextBoxEx1
  158. //
  159. //
  160. //
  161. //
  162. this.richTextBoxEx1.BackgroundStyle.Class = "RichTextBoxBorder";
  163. this.richTextBoxEx1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  164. this.richTextBoxEx1.Dock = System.Windows.Forms.DockStyle.Fill;
  165. this.richTextBoxEx1.Location = new System.Drawing.Point(0, 0);
  166. this.richTextBoxEx1.Name = "richTextBoxEx1";
  167. this.richTextBoxEx1.Rtf = "{\\rtf1\\ansi\\deff0{\\fonttbl{\\f0\\fnil\\fcharset134 \\\'cb\\\'ce\\\'cc\\\'e5;}}\r\n\\viewkind4\\u" +
  168. "c1\\pard\\lang2052\\f0\\fs18 richTextBoxEx1\\par\r\n}\r\n";
  169. this.richTextBoxEx1.Size = new System.Drawing.Size(417, 95);
  170. this.richTextBoxEx1.TabIndex = 2;
  171. this.richTextBoxEx1.Text = "richTextBoxEx1";
  172. //
  173. // imageListTool
  174. //
  175. this.imageListTool.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTool.ImageStream")));
  176. this.imageListTool.TransparentColor = System.Drawing.Color.Transparent;
  177. this.imageListTool.Images.SetKeyName(0, "流程.png");
  178. this.imageListTool.Images.SetKeyName(1, "流程图.png");
  179. this.imageListTool.Images.SetKeyName(2, "图像.png");
  180. this.imageListTool.Images.SetKeyName(3, "图像.png");
  181. this.imageListTool.Images.SetKeyName(4, "图像.png");
  182. this.imageListTool.Images.SetKeyName(5, "图像.png");
  183. this.imageListTool.Images.SetKeyName(6, "line.png");
  184. this.imageListTool.Images.SetKeyName(7, "Circle.png");
  185. this.imageListTool.Images.SetKeyName(8, "卡尺.png");
  186. //
  187. // splitContainer1
  188. //
  189. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  190. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  191. this.splitContainer1.Name = "splitContainer1";
  192. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  193. //
  194. // splitContainer1.Panel1
  195. //
  196. this.splitContainer1.Panel1.Controls.Add(this.tvw_ToolBox);
  197. //
  198. // splitContainer1.Panel2
  199. //
  200. this.splitContainer1.Panel2.Controls.Add(this.richTextBoxEx1);
  201. this.splitContainer1.Size = new System.Drawing.Size(417, 642);
  202. this.splitContainer1.SplitterDistance = 543;
  203. this.splitContainer1.TabIndex = 7;
  204. //
  205. // FormToolBox
  206. //
  207. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  208. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  209. this.ClientSize = new System.Drawing.Size(417, 642);
  210. this.Controls.Add(this.splitContainer1);
  211. this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  212. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  213. this.Name = "FormToolBox";
  214. this.Text = "工具箱";
  215. this.splitContainer1.Panel1.ResumeLayout(false);
  216. this.splitContainer1.Panel2.ResumeLayout(false);
  217. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  218. this.splitContainer1.ResumeLayout(false);
  219. this.ResumeLayout(false);
  220. }
  221. #endregion
  222. private System.Windows.Forms.TreeView tvw_ToolBox;
  223. private DevComponents.DotNetBar.Controls.RichTextBoxEx richTextBoxEx1;
  224. public System.Windows.Forms.ImageList imageList1;
  225. public System.Windows.Forms.ImageList imageListTool;
  226. private System.Windows.Forms.SplitContainer splitContainer1;
  227. }
  228. }