DataTraversal.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. namespace MyMemcached
  2. {
  3. partial class DataTraversal
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataTraversal));
  29. this.cmbSlabs = new System.Windows.Forms.ComboBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.lbItemsCount = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.tbCount = new System.Windows.Forms.TextBox();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.btnGo = new System.Windows.Forms.Button();
  36. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  37. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  38. this.SuspendLayout();
  39. //
  40. // cmbSlabs
  41. //
  42. this.cmbSlabs.FormattingEnabled = true;
  43. this.cmbSlabs.Location = new System.Drawing.Point(71, 12);
  44. this.cmbSlabs.Name = "cmbSlabs";
  45. this.cmbSlabs.Size = new System.Drawing.Size(122, 20);
  46. this.cmbSlabs.TabIndex = 0;
  47. this.cmbSlabs.SelectedIndexChanged += new System.EventHandler(this.cmbSlabs_SelectedIndexChanged);
  48. //
  49. // label1
  50. //
  51. this.label1.AutoSize = true;
  52. this.label1.Location = new System.Drawing.Point(12, 16);
  53. this.label1.Name = "label1";
  54. this.label1.Size = new System.Drawing.Size(53, 12);
  55. this.label1.TabIndex = 1;
  56. this.label1.Text = "选择区块";
  57. //
  58. // lbItemsCount
  59. //
  60. this.lbItemsCount.AutoSize = true;
  61. this.lbItemsCount.Location = new System.Drawing.Point(216, 16);
  62. this.lbItemsCount.Name = "lbItemsCount";
  63. this.lbItemsCount.Size = new System.Drawing.Size(0, 12);
  64. this.lbItemsCount.TabIndex = 2;
  65. //
  66. // label2
  67. //
  68. this.label2.AutoSize = true;
  69. this.label2.Location = new System.Drawing.Point(23, 45);
  70. this.label2.Name = "label2";
  71. this.label2.Size = new System.Drawing.Size(41, 12);
  72. this.label2.TabIndex = 3;
  73. this.label2.Text = "遍历前";
  74. //
  75. // tbCount
  76. //
  77. this.tbCount.Location = new System.Drawing.Point(71, 41);
  78. this.tbCount.Name = "tbCount";
  79. this.tbCount.Size = new System.Drawing.Size(122, 21);
  80. this.tbCount.TabIndex = 4;
  81. //
  82. // label3
  83. //
  84. this.label3.AutoSize = true;
  85. this.label3.Location = new System.Drawing.Point(200, 45);
  86. this.label3.Name = "label3";
  87. this.label3.Size = new System.Drawing.Size(41, 12);
  88. this.label3.TabIndex = 5;
  89. this.label3.Text = "条记录";
  90. //
  91. // btnGo
  92. //
  93. this.btnGo.Location = new System.Drawing.Point(285, 40);
  94. this.btnGo.Name = "btnGo";
  95. this.btnGo.Size = new System.Drawing.Size(75, 23);
  96. this.btnGo.TabIndex = 6;
  97. this.btnGo.Text = "获取数据";
  98. this.btnGo.UseVisualStyleBackColor = true;
  99. this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
  100. //
  101. // richTextBox1
  102. //
  103. this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  104. | System.Windows.Forms.AnchorStyles.Left)
  105. | System.Windows.Forms.AnchorStyles.Right)));
  106. this.richTextBox1.Location = new System.Drawing.Point(13, 71);
  107. this.richTextBox1.Name = "richTextBox1";
  108. this.richTextBox1.Size = new System.Drawing.Size(433, 395);
  109. this.richTextBox1.TabIndex = 7;
  110. this.richTextBox1.Text = "";
  111. //
  112. // progressBar1
  113. //
  114. this.progressBar1.Location = new System.Drawing.Point(12, 472);
  115. this.progressBar1.Name = "progressBar1";
  116. this.progressBar1.Size = new System.Drawing.Size(434, 23);
  117. this.progressBar1.TabIndex = 8;
  118. //
  119. // DataTraversal
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.ClientSize = new System.Drawing.Size(458, 507);
  124. this.Controls.Add(this.progressBar1);
  125. this.Controls.Add(this.richTextBox1);
  126. this.Controls.Add(this.btnGo);
  127. this.Controls.Add(this.label3);
  128. this.Controls.Add(this.tbCount);
  129. this.Controls.Add(this.label2);
  130. this.Controls.Add(this.lbItemsCount);
  131. this.Controls.Add(this.label1);
  132. this.Controls.Add(this.cmbSlabs);
  133. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  134. this.Name = "DataTraversal";
  135. this.Text = "数据遍历";
  136. this.ResumeLayout(false);
  137. this.PerformLayout();
  138. }
  139. #endregion
  140. private System.Windows.Forms.ComboBox cmbSlabs;
  141. private System.Windows.Forms.Label label1;
  142. private System.Windows.Forms.Label lbItemsCount;
  143. private System.Windows.Forms.Label label2;
  144. private System.Windows.Forms.TextBox tbCount;
  145. private System.Windows.Forms.Label label3;
  146. private System.Windows.Forms.Button btnGo;
  147. private System.Windows.Forms.RichTextBox richTextBox1;
  148. private System.Windows.Forms.ProgressBar progressBar1;
  149. }
  150. }