You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

StartForm.Designer.cs 3.5 kB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. 
  2. namespace WInFormApp
  3. {
  4. partial class StartForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.btnGen = new System.Windows.Forms.Button();
  30. this.txtIdList = new System.Windows.Forms.TextBox();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // btnGen
  35. //
  36. this.btnGen.Location = new System.Drawing.Point(12, 385);
  37. this.btnGen.Name = "btnGen";
  38. this.btnGen.Size = new System.Drawing.Size(170, 64);
  39. this.btnGen.TabIndex = 0;
  40. this.btnGen.Text = "注册";
  41. this.btnGen.UseVisualStyleBackColor = true;
  42. this.btnGen.Click += new System.EventHandler(this.btnGen_Click);
  43. //
  44. // txtIdList
  45. //
  46. this.txtIdList.Location = new System.Drawing.Point(12, 12);
  47. this.txtIdList.Multiline = true;
  48. this.txtIdList.Name = "txtIdList";
  49. this.txtIdList.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  50. this.txtIdList.Size = new System.Drawing.Size(443, 346);
  51. this.txtIdList.TabIndex = 1;
  52. //
  53. // button1
  54. //
  55. this.button1.Location = new System.Drawing.Point(286, 385);
  56. this.button1.Name = "button1";
  57. this.button1.Size = new System.Drawing.Size(170, 64);
  58. this.button1.TabIndex = 2;
  59. this.button1.Text = "注销";
  60. this.button1.UseVisualStyleBackColor = true;
  61. this.button1.Click += new System.EventHandler(this.button1_Click);
  62. //
  63. // StartForm
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(468, 514);
  68. this.Controls.Add(this.button1);
  69. this.Controls.Add(this.txtIdList);
  70. this.Controls.Add(this.btnGen);
  71. this.Name = "StartForm";
  72. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  73. this.Text = "TestForm";
  74. this.Load += new System.EventHandler(this.Form1_Load);
  75. this.ResumeLayout(false);
  76. this.PerformLayout();
  77. }
  78. #endregion
  79. private System.Windows.Forms.Button btnGen;
  80. private System.Windows.Forms.TextBox txtIdList;
  81. private System.Windows.Forms.Button button1;
  82. }
  83. }

雪花算法中非常好用的数字ID生成器