123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- namespace MyMemcached
- {
- partial class DataTraversal
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataTraversal));
- this.cmbSlabs = new System.Windows.Forms.ComboBox();
- this.label1 = new System.Windows.Forms.Label();
- this.lbItemsCount = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.tbCount = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.btnGo = new System.Windows.Forms.Button();
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- this.progressBar1 = new System.Windows.Forms.ProgressBar();
- this.SuspendLayout();
- //
- // cmbSlabs
- //
- this.cmbSlabs.FormattingEnabled = true;
- this.cmbSlabs.Location = new System.Drawing.Point(71, 12);
- this.cmbSlabs.Name = "cmbSlabs";
- this.cmbSlabs.Size = new System.Drawing.Size(122, 20);
- this.cmbSlabs.TabIndex = 0;
- this.cmbSlabs.SelectedIndexChanged += new System.EventHandler(this.cmbSlabs_SelectedIndexChanged);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 16);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(53, 12);
- this.label1.TabIndex = 1;
- this.label1.Text = "选择区块";
- //
- // lbItemsCount
- //
- this.lbItemsCount.AutoSize = true;
- this.lbItemsCount.Location = new System.Drawing.Point(216, 16);
- this.lbItemsCount.Name = "lbItemsCount";
- this.lbItemsCount.Size = new System.Drawing.Size(0, 12);
- this.lbItemsCount.TabIndex = 2;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(23, 45);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(41, 12);
- this.label2.TabIndex = 3;
- this.label2.Text = "遍历前";
- //
- // tbCount
- //
- this.tbCount.Location = new System.Drawing.Point(71, 41);
- this.tbCount.Name = "tbCount";
- this.tbCount.Size = new System.Drawing.Size(122, 21);
- this.tbCount.TabIndex = 4;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(200, 45);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(41, 12);
- this.label3.TabIndex = 5;
- this.label3.Text = "条记录";
- //
- // btnGo
- //
- this.btnGo.Location = new System.Drawing.Point(285, 40);
- this.btnGo.Name = "btnGo";
- this.btnGo.Size = new System.Drawing.Size(75, 23);
- this.btnGo.TabIndex = 6;
- this.btnGo.Text = "获取数据";
- this.btnGo.UseVisualStyleBackColor = true;
- this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
- //
- // richTextBox1
- //
- this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.richTextBox1.Location = new System.Drawing.Point(13, 71);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(433, 395);
- this.richTextBox1.TabIndex = 7;
- this.richTextBox1.Text = "";
- //
- // progressBar1
- //
- this.progressBar1.Location = new System.Drawing.Point(12, 472);
- this.progressBar1.Name = "progressBar1";
- this.progressBar1.Size = new System.Drawing.Size(434, 23);
- this.progressBar1.TabIndex = 8;
- //
- // DataTraversal
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(458, 507);
- this.Controls.Add(this.progressBar1);
- this.Controls.Add(this.richTextBox1);
- this.Controls.Add(this.btnGo);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.tbCount);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.lbItemsCount);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.cmbSlabs);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "DataTraversal";
- this.Text = "数据遍历";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ComboBox cmbSlabs;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label lbItemsCount;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox tbCount;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button btnGo;
- private System.Windows.Forms.RichTextBox richTextBox1;
- private System.Windows.Forms.ProgressBar progressBar1;
- }
- }
|