UICollectionTask.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. namespace DataManager
  2. {
  3. partial class UICollectionTask
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.grdEntity = new System.Windows.Forms.DataGridView();
  30. this.grdCompany = new System.Windows.Forms.DataGridView();
  31. this.btnEntitySearch = new System.Windows.Forms.Button();
  32. this.lblEntityTypeName = new System.Windows.Forms.Label();
  33. this.txtEntityName = new System.Windows.Forms.TextBox();
  34. this.btnCompanySearch = new System.Windows.Forms.Button();
  35. this.dtpTaskDate = new System.Windows.Forms.DateTimePicker();
  36. this.txtMemo = new System.Windows.Forms.TextBox();
  37. this.label7 = new System.Windows.Forms.Label();
  38. this.cmbIsValid = new System.Windows.Forms.ComboBox();
  39. this.label4 = new System.Windows.Forms.Label();
  40. this.label3 = new System.Windows.Forms.Label();
  41. this.cmbTaskType = new System.Windows.Forms.ComboBox();
  42. this.label2 = new System.Windows.Forms.Label();
  43. this.txtCompanyShortName = new System.Windows.Forms.TextBox();
  44. this.label1 = new System.Windows.Forms.Label();
  45. this.btnDelTask = new System.Windows.Forms.Button();
  46. this.btnSaveTask = new System.Windows.Forms.Button();
  47. this.panel1.SuspendLayout();
  48. ((System.ComponentModel.ISupportInitialize)(this.grdEntity)).BeginInit();
  49. ((System.ComponentModel.ISupportInitialize)(this.grdCompany)).BeginInit();
  50. this.SuspendLayout();
  51. //
  52. // panel1
  53. //
  54. this.panel1.BackColor = System.Drawing.SystemColors.ControlLight;
  55. this.panel1.Controls.Add(this.grdEntity);
  56. this.panel1.Controls.Add(this.grdCompany);
  57. this.panel1.Controls.Add(this.btnEntitySearch);
  58. this.panel1.Controls.Add(this.lblEntityTypeName);
  59. this.panel1.Controls.Add(this.txtEntityName);
  60. this.panel1.Controls.Add(this.btnCompanySearch);
  61. this.panel1.Controls.Add(this.dtpTaskDate);
  62. this.panel1.Controls.Add(this.txtMemo);
  63. this.panel1.Controls.Add(this.label7);
  64. this.panel1.Controls.Add(this.cmbIsValid);
  65. this.panel1.Controls.Add(this.label4);
  66. this.panel1.Controls.Add(this.label3);
  67. this.panel1.Controls.Add(this.cmbTaskType);
  68. this.panel1.Controls.Add(this.label2);
  69. this.panel1.Controls.Add(this.txtCompanyShortName);
  70. this.panel1.Controls.Add(this.label1);
  71. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  72. this.panel1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  73. this.panel1.Location = new System.Drawing.Point(0, 0);
  74. this.panel1.Margin = new System.Windows.Forms.Padding(4);
  75. this.panel1.Name = "panel1";
  76. this.panel1.Size = new System.Drawing.Size(643, 311);
  77. this.panel1.TabIndex = 0;
  78. //
  79. // grdEntity
  80. //
  81. this.grdEntity.AllowUserToAddRows = false;
  82. this.grdEntity.AllowUserToDeleteRows = false;
  83. this.grdEntity.AllowUserToResizeRows = false;
  84. this.grdEntity.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  85. this.grdEntity.ColumnHeadersVisible = false;
  86. this.grdEntity.ImeMode = System.Windows.Forms.ImeMode.Off;
  87. this.grdEntity.Location = new System.Drawing.Point(100, 155);
  88. this.grdEntity.Name = "grdEntity";
  89. this.grdEntity.ReadOnly = true;
  90. this.grdEntity.RowHeadersVisible = false;
  91. this.grdEntity.RowTemplate.Height = 23;
  92. this.grdEntity.Size = new System.Drawing.Size(415, 150);
  93. this.grdEntity.TabIndex = 34;
  94. this.grdEntity.Visible = false;
  95. this.grdEntity.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEntity_CellContentClick);
  96. //
  97. // grdCompany
  98. //
  99. this.grdCompany.AllowUserToAddRows = false;
  100. this.grdCompany.AllowUserToDeleteRows = false;
  101. this.grdCompany.AllowUserToResizeRows = false;
  102. this.grdCompany.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  103. this.grdCompany.ColumnHeadersVisible = false;
  104. this.grdCompany.ImeMode = System.Windows.Forms.ImeMode.Off;
  105. this.grdCompany.Location = new System.Drawing.Point(100, 105);
  106. this.grdCompany.Name = "grdCompany";
  107. this.grdCompany.ReadOnly = true;
  108. this.grdCompany.RowHeadersVisible = false;
  109. this.grdCompany.RowTemplate.Height = 23;
  110. this.grdCompany.Size = new System.Drawing.Size(240, 150);
  111. this.grdCompany.TabIndex = 17;
  112. this.grdCompany.Visible = false;
  113. this.grdCompany.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdCompany_CellContentClick);
  114. //
  115. // btnEntitySearch
  116. //
  117. this.btnEntitySearch.BackColor = System.Drawing.Color.SkyBlue;
  118. this.btnEntitySearch.Location = new System.Drawing.Point(296, 124);
  119. this.btnEntitySearch.Margin = new System.Windows.Forms.Padding(4);
  120. this.btnEntitySearch.Name = "btnEntitySearch";
  121. this.btnEntitySearch.Size = new System.Drawing.Size(60, 25);
  122. this.btnEntitySearch.TabIndex = 33;
  123. this.btnEntitySearch.Text = "搜";
  124. this.btnEntitySearch.UseVisualStyleBackColor = false;
  125. this.btnEntitySearch.Click += new System.EventHandler(this.btnEntitySearch_Click);
  126. //
  127. // lblEntityTypeName
  128. //
  129. this.lblEntityTypeName.AutoSize = true;
  130. this.lblEntityTypeName.Location = new System.Drawing.Point(33, 129);
  131. this.lblEntityTypeName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  132. this.lblEntityTypeName.Name = "lblEntityTypeName";
  133. this.lblEntityTypeName.Size = new System.Drawing.Size(32, 17);
  134. this.lblEntityTypeName.TabIndex = 32;
  135. this.lblEntityTypeName.Text = "主题";
  136. //
  137. // txtEntityName
  138. //
  139. this.txtEntityName.Location = new System.Drawing.Point(100, 125);
  140. this.txtEntityName.Margin = new System.Windows.Forms.Padding(4);
  141. this.txtEntityName.Name = "txtEntityName";
  142. this.txtEntityName.Size = new System.Drawing.Size(197, 23);
  143. this.txtEntityName.TabIndex = 31;
  144. //
  145. // btnCompanySearch
  146. //
  147. this.btnCompanySearch.BackColor = System.Drawing.Color.SkyBlue;
  148. this.btnCompanySearch.Location = new System.Drawing.Point(296, 74);
  149. this.btnCompanySearch.Margin = new System.Windows.Forms.Padding(4);
  150. this.btnCompanySearch.Name = "btnCompanySearch";
  151. this.btnCompanySearch.Size = new System.Drawing.Size(60, 25);
  152. this.btnCompanySearch.TabIndex = 21;
  153. this.btnCompanySearch.Text = "搜";
  154. this.btnCompanySearch.UseVisualStyleBackColor = false;
  155. this.btnCompanySearch.Click += new System.EventHandler(this.btnCompanySearch_Click);
  156. //
  157. // dtpTaskDate
  158. //
  159. this.dtpTaskDate.Location = new System.Drawing.Point(483, 25);
  160. this.dtpTaskDate.Margin = new System.Windows.Forms.Padding(4);
  161. this.dtpTaskDate.Name = "dtpTaskDate";
  162. this.dtpTaskDate.Size = new System.Drawing.Size(121, 23);
  163. this.dtpTaskDate.TabIndex = 30;
  164. //
  165. // txtMemo
  166. //
  167. this.txtMemo.Location = new System.Drawing.Point(100, 175);
  168. this.txtMemo.Margin = new System.Windows.Forms.Padding(4);
  169. this.txtMemo.Multiline = true;
  170. this.txtMemo.Name = "txtMemo";
  171. this.txtMemo.Size = new System.Drawing.Size(504, 90);
  172. this.txtMemo.TabIndex = 29;
  173. //
  174. // label7
  175. //
  176. this.label7.AutoSize = true;
  177. this.label7.Location = new System.Drawing.Point(33, 178);
  178. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  179. this.label7.Name = "label7";
  180. this.label7.Size = new System.Drawing.Size(32, 17);
  181. this.label7.TabIndex = 28;
  182. this.label7.Text = "备注";
  183. //
  184. // cmbIsValid
  185. //
  186. this.cmbIsValid.FormattingEnabled = true;
  187. this.cmbIsValid.Location = new System.Drawing.Point(483, 75);
  188. this.cmbIsValid.Margin = new System.Windows.Forms.Padding(4);
  189. this.cmbIsValid.Name = "cmbIsValid";
  190. this.cmbIsValid.Size = new System.Drawing.Size(121, 25);
  191. this.cmbIsValid.TabIndex = 26;
  192. //
  193. // label4
  194. //
  195. this.label4.AutoSize = true;
  196. this.label4.Location = new System.Drawing.Point(411, 78);
  197. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  198. this.label4.Name = "label4";
  199. this.label4.Size = new System.Drawing.Size(32, 17);
  200. this.label4.TabIndex = 23;
  201. this.label4.Text = "状态";
  202. //
  203. // label3
  204. //
  205. this.label3.AutoSize = true;
  206. this.label3.Location = new System.Drawing.Point(411, 29);
  207. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  208. this.label3.Name = "label3";
  209. this.label3.Size = new System.Drawing.Size(32, 17);
  210. this.label3.TabIndex = 22;
  211. this.label3.Text = "日期";
  212. //
  213. // cmbTaskType
  214. //
  215. this.cmbTaskType.FormattingEnabled = true;
  216. this.cmbTaskType.Location = new System.Drawing.Point(100, 25);
  217. this.cmbTaskType.Margin = new System.Windows.Forms.Padding(4);
  218. this.cmbTaskType.Name = "cmbTaskType";
  219. this.cmbTaskType.Size = new System.Drawing.Size(121, 25);
  220. this.cmbTaskType.TabIndex = 20;
  221. this.cmbTaskType.SelectedIndexChanged += new System.EventHandler(this.cmbTaskType_SelectedIndexChanged);
  222. //
  223. // label2
  224. //
  225. this.label2.AutoSize = true;
  226. this.label2.Location = new System.Drawing.Point(33, 78);
  227. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  228. this.label2.Name = "label2";
  229. this.label2.Size = new System.Drawing.Size(44, 17);
  230. this.label2.TabIndex = 19;
  231. this.label2.Text = "数据源";
  232. //
  233. // txtCompanyShortName
  234. //
  235. this.txtCompanyShortName.Location = new System.Drawing.Point(100, 75);
  236. this.txtCompanyShortName.Margin = new System.Windows.Forms.Padding(4);
  237. this.txtCompanyShortName.Name = "txtCompanyShortName";
  238. this.txtCompanyShortName.Size = new System.Drawing.Size(197, 23);
  239. this.txtCompanyShortName.TabIndex = 18;
  240. //
  241. // label1
  242. //
  243. this.label1.AutoSize = true;
  244. this.label1.Location = new System.Drawing.Point(33, 29);
  245. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  246. this.label1.Name = "label1";
  247. this.label1.Size = new System.Drawing.Size(32, 17);
  248. this.label1.TabIndex = 17;
  249. this.label1.Text = "任务";
  250. //
  251. // btnDelTask
  252. //
  253. this.btnDelTask.Location = new System.Drawing.Point(36, 324);
  254. this.btnDelTask.Name = "btnDelTask";
  255. this.btnDelTask.Size = new System.Drawing.Size(75, 28);
  256. this.btnDelTask.TabIndex = 5;
  257. this.btnDelTask.Text = "删 除";
  258. this.btnDelTask.UseVisualStyleBackColor = true;
  259. //
  260. // btnSaveTask
  261. //
  262. this.btnSaveTask.Location = new System.Drawing.Point(529, 324);
  263. this.btnSaveTask.Name = "btnSaveTask";
  264. this.btnSaveTask.Size = new System.Drawing.Size(75, 28);
  265. this.btnSaveTask.TabIndex = 4;
  266. this.btnSaveTask.Text = "保 存";
  267. this.btnSaveTask.UseVisualStyleBackColor = true;
  268. this.btnSaveTask.Click += new System.EventHandler(this.btnSaveTask_Click);
  269. //
  270. // UICollectionTask
  271. //
  272. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  273. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  274. this.ClientSize = new System.Drawing.Size(643, 362);
  275. this.Controls.Add(this.btnDelTask);
  276. this.Controls.Add(this.btnSaveTask);
  277. this.Controls.Add(this.panel1);
  278. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  279. this.Margin = new System.Windows.Forms.Padding(4);
  280. this.Name = "UICollectionTask";
  281. this.Text = "采集任务";
  282. this.panel1.ResumeLayout(false);
  283. this.panel1.PerformLayout();
  284. ((System.ComponentModel.ISupportInitialize)(this.grdEntity)).EndInit();
  285. ((System.ComponentModel.ISupportInitialize)(this.grdCompany)).EndInit();
  286. this.ResumeLayout(false);
  287. }
  288. #endregion
  289. private System.Windows.Forms.Panel panel1;
  290. private System.Windows.Forms.Button btnCompanySearch;
  291. private System.Windows.Forms.DateTimePicker dtpTaskDate;
  292. private System.Windows.Forms.TextBox txtMemo;
  293. private System.Windows.Forms.Label label7;
  294. private System.Windows.Forms.ComboBox cmbIsValid;
  295. private System.Windows.Forms.Label label4;
  296. private System.Windows.Forms.Label label3;
  297. private System.Windows.Forms.ComboBox cmbTaskType;
  298. private System.Windows.Forms.Label label2;
  299. private System.Windows.Forms.TextBox txtCompanyShortName;
  300. private System.Windows.Forms.Label label1;
  301. private System.Windows.Forms.Button btnEntitySearch;
  302. private System.Windows.Forms.Label lblEntityTypeName;
  303. private System.Windows.Forms.TextBox txtEntityName;
  304. private System.Windows.Forms.Button btnDelTask;
  305. private System.Windows.Forms.Button btnSaveTask;
  306. private System.Windows.Forms.DataGridView grdCompany;
  307. private System.Windows.Forms.DataGridView grdEntity;
  308. }
  309. }