NetDetailForm.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. namespace Oreo.PCMonitor.Views
  2. {
  3. partial class NetDetailForm
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  36. this.DgProcessDetail = new System.Windows.Forms.DataGridView();
  37. this.CoIcon = new System.Windows.Forms.DataGridViewImageColumn();
  38. this.CoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.CoDownload = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.CoUpload = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.CoDownloadCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.CoUploadCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.CoConnectionCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. this.status = new System.Windows.Forms.Label();
  45. this.label1 = new System.Windows.Forms.Label();
  46. ((System.ComponentModel.ISupportInitialize)(this.DgProcessDetail)).BeginInit();
  47. this.SuspendLayout();
  48. //
  49. // DgProcessDetail
  50. //
  51. this.DgProcessDetail.AllowUserToAddRows = false;
  52. this.DgProcessDetail.AllowUserToDeleteRows = false;
  53. this.DgProcessDetail.AllowUserToResizeColumns = false;
  54. this.DgProcessDetail.AllowUserToResizeRows = false;
  55. this.DgProcessDetail.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  56. this.DgProcessDetail.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
  57. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  58. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
  59. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  60. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
  61. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  62. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  63. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  64. this.DgProcessDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  65. this.DgProcessDetail.ColumnHeadersHeight = 40;
  66. this.DgProcessDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  67. this.DgProcessDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  68. this.CoIcon,
  69. this.CoName,
  70. this.CoDownload,
  71. this.CoUpload,
  72. this.CoDownloadCount,
  73. this.CoUploadCount,
  74. this.CoConnectionCount});
  75. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  76. dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
  77. dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  78. dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
  79. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.GradientActiveCaption;
  80. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.Color.Black;
  81. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  82. this.DgProcessDetail.DefaultCellStyle = dataGridViewCellStyle8;
  83. this.DgProcessDetail.Location = new System.Drawing.Point(11, 81);
  84. this.DgProcessDetail.Name = "DgProcessDetail";
  85. this.DgProcessDetail.ReadOnly = true;
  86. this.DgProcessDetail.RowHeadersVisible = false;
  87. this.DgProcessDetail.RowTemplate.Height = 40;
  88. this.DgProcessDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  89. this.DgProcessDetail.Size = new System.Drawing.Size(811, 406);
  90. this.DgProcessDetail.TabIndex = 24;
  91. //
  92. // CoIcon
  93. //
  94. this.CoIcon.HeaderText = "名称";
  95. this.CoIcon.Name = "CoIcon";
  96. this.CoIcon.ReadOnly = true;
  97. //
  98. // CoName
  99. //
  100. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  101. this.CoName.DefaultCellStyle = dataGridViewCellStyle2;
  102. this.CoName.HeaderText = "";
  103. this.CoName.Name = "CoName";
  104. this.CoName.ReadOnly = true;
  105. //
  106. // CoDownload
  107. //
  108. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  109. this.CoDownload.DefaultCellStyle = dataGridViewCellStyle3;
  110. this.CoDownload.HeaderText = "下载速度";
  111. this.CoDownload.Name = "CoDownload";
  112. this.CoDownload.ReadOnly = true;
  113. //
  114. // CoUpload
  115. //
  116. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  117. this.CoUpload.DefaultCellStyle = dataGridViewCellStyle4;
  118. this.CoUpload.HeaderText = "上传速度";
  119. this.CoUpload.Name = "CoUpload";
  120. this.CoUpload.ReadOnly = true;
  121. //
  122. // CoDownloadCount
  123. //
  124. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  125. this.CoDownloadCount.DefaultCellStyle = dataGridViewCellStyle5;
  126. this.CoDownloadCount.HeaderText = "已下载流量";
  127. this.CoDownloadCount.Name = "CoDownloadCount";
  128. this.CoDownloadCount.ReadOnly = true;
  129. //
  130. // CoUploadCount
  131. //
  132. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  133. this.CoUploadCount.DefaultCellStyle = dataGridViewCellStyle6;
  134. this.CoUploadCount.HeaderText = "已上传流量";
  135. this.CoUploadCount.Name = "CoUploadCount";
  136. this.CoUploadCount.ReadOnly = true;
  137. //
  138. // CoConnectionCount
  139. //
  140. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  141. this.CoConnectionCount.DefaultCellStyle = dataGridViewCellStyle7;
  142. this.CoConnectionCount.HeaderText = "连接数";
  143. this.CoConnectionCount.Name = "CoConnectionCount";
  144. this.CoConnectionCount.ReadOnly = true;
  145. //
  146. // status
  147. //
  148. this.status.Location = new System.Drawing.Point(14, 506);
  149. this.status.Name = "status";
  150. this.status.Size = new System.Drawing.Size(534, 42);
  151. this.status.TabIndex = 25;
  152. this.status.Text = "信息";
  153. //
  154. // label1
  155. //
  156. this.label1.AutoSize = true;
  157. this.label1.Location = new System.Drawing.Point(720, 40);
  158. this.label1.Name = "label1";
  159. this.label1.Size = new System.Drawing.Size(41, 12);
  160. this.label1.TabIndex = 26;
  161. this.label1.Text = "label1";
  162. //
  163. // NetDetailForm
  164. //
  165. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  166. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  167. this.ClientSize = new System.Drawing.Size(834, 561);
  168. this.Controls.Add(this.label1);
  169. this.Controls.Add(this.DgProcessDetail);
  170. this.Controls.Add(this.status);
  171. this.Name = "NetDetailForm";
  172. this.Text = "NetDetailForm";
  173. this.Load += new System.EventHandler(this.NetDetailForm_Load);
  174. ((System.ComponentModel.ISupportInitialize)(this.DgProcessDetail)).EndInit();
  175. this.ResumeLayout(false);
  176. this.PerformLayout();
  177. }
  178. #endregion
  179. private System.Windows.Forms.DataGridView DgProcessDetail;
  180. private System.Windows.Forms.Label status;
  181. private System.Windows.Forms.Label label1;
  182. private System.Windows.Forms.DataGridViewImageColumn CoIcon;
  183. private System.Windows.Forms.DataGridViewTextBoxColumn CoName;
  184. private System.Windows.Forms.DataGridViewTextBoxColumn CoDownload;
  185. private System.Windows.Forms.DataGridViewTextBoxColumn CoUpload;
  186. private System.Windows.Forms.DataGridViewTextBoxColumn CoDownloadCount;
  187. private System.Windows.Forms.DataGridViewTextBoxColumn CoUploadCount;
  188. private System.Windows.Forms.DataGridViewTextBoxColumn CoConnectionCount;
  189. }
  190. }