Form1.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. namespace test
  2. {
  3. partial class Form1
  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.buttonRegister = new System.Windows.Forms.Button();
  29. this.buttonUnRegister = new System.Windows.Forms.Button();
  30. this.textBoxDebug = new System.Windows.Forms.TextBox();
  31. this.buttonPublish = new System.Windows.Forms.Button();
  32. this.buttonUnPublish = new System.Windows.Forms.Button();
  33. this.buttonUnSub = new System.Windows.Forms.Button();
  34. this.buttonSub = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // buttonRegister
  38. //
  39. this.buttonRegister.Location = new System.Drawing.Point(12, 263);
  40. this.buttonRegister.Name = "buttonRegister";
  41. this.buttonRegister.Size = new System.Drawing.Size(75, 23);
  42. this.buttonRegister.TabIndex = 0;
  43. this.buttonRegister.Text = "Register";
  44. this.buttonRegister.UseVisualStyleBackColor = true;
  45. this.buttonRegister.Click += new System.EventHandler(this.buttonRegister_Click);
  46. //
  47. // buttonUnRegister
  48. //
  49. this.buttonUnRegister.Location = new System.Drawing.Point(199, 263);
  50. this.buttonUnRegister.Name = "buttonUnRegister";
  51. this.buttonUnRegister.Size = new System.Drawing.Size(75, 23);
  52. this.buttonUnRegister.TabIndex = 1;
  53. this.buttonUnRegister.Text = "UnRegister";
  54. this.buttonUnRegister.UseVisualStyleBackColor = true;
  55. this.buttonUnRegister.Click += new System.EventHandler(this.buttonUnRegister_Click);
  56. //
  57. // textBoxDebug
  58. //
  59. this.textBoxDebug.Location = new System.Drawing.Point(12, 292);
  60. this.textBoxDebug.Multiline = true;
  61. this.textBoxDebug.Name = "textBoxDebug";
  62. this.textBoxDebug.Size = new System.Drawing.Size(262, 70);
  63. this.textBoxDebug.TabIndex = 2;
  64. //
  65. // buttonPublish
  66. //
  67. this.buttonPublish.Location = new System.Drawing.Point(12, 234);
  68. this.buttonPublish.Name = "buttonPublish";
  69. this.buttonPublish.Size = new System.Drawing.Size(75, 23);
  70. this.buttonPublish.TabIndex = 3;
  71. this.buttonPublish.Text = "Publish";
  72. this.buttonPublish.UseVisualStyleBackColor = true;
  73. this.buttonPublish.Click += new System.EventHandler(this.buttonPublish_Click);
  74. //
  75. // buttonUnPublish
  76. //
  77. this.buttonUnPublish.Location = new System.Drawing.Point(199, 235);
  78. this.buttonUnPublish.Name = "buttonUnPublish";
  79. this.buttonUnPublish.Size = new System.Drawing.Size(75, 23);
  80. this.buttonUnPublish.TabIndex = 4;
  81. this.buttonUnPublish.Text = "UnPublish";
  82. this.buttonUnPublish.UseVisualStyleBackColor = true;
  83. this.buttonUnPublish.Click += new System.EventHandler(this.buttonUnPublish_Click);
  84. //
  85. // buttonUnSub
  86. //
  87. this.buttonUnSub.Location = new System.Drawing.Point(199, 206);
  88. this.buttonUnSub.Name = "buttonUnSub";
  89. this.buttonUnSub.Size = new System.Drawing.Size(75, 23);
  90. this.buttonUnSub.TabIndex = 6;
  91. this.buttonUnSub.Text = "UnSubscribe";
  92. this.buttonUnSub.UseVisualStyleBackColor = true;
  93. //
  94. // buttonSub
  95. //
  96. this.buttonSub.Location = new System.Drawing.Point(12, 205);
  97. this.buttonSub.Name = "buttonSub";
  98. this.buttonSub.Size = new System.Drawing.Size(75, 23);
  99. this.buttonSub.TabIndex = 5;
  100. this.buttonSub.Text = "Subscribe";
  101. this.buttonSub.UseVisualStyleBackColor = true;
  102. this.buttonSub.Click += new System.EventHandler(this.buttonSub_Click);
  103. //
  104. // Form1
  105. //
  106. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  107. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  108. this.ClientSize = new System.Drawing.Size(286, 374);
  109. this.Controls.Add(this.buttonUnSub);
  110. this.Controls.Add(this.buttonSub);
  111. this.Controls.Add(this.buttonUnPublish);
  112. this.Controls.Add(this.buttonPublish);
  113. this.Controls.Add(this.textBoxDebug);
  114. this.Controls.Add(this.buttonUnRegister);
  115. this.Controls.Add(this.buttonRegister);
  116. this.Name = "Form1";
  117. this.Text = "Form1";
  118. this.ResumeLayout(false);
  119. this.PerformLayout();
  120. }
  121. #endregion
  122. private System.Windows.Forms.Button buttonRegister;
  123. private System.Windows.Forms.Button buttonUnRegister;
  124. private System.Windows.Forms.TextBox textBoxDebug;
  125. private System.Windows.Forms.Button buttonPublish;
  126. private System.Windows.Forms.Button buttonUnPublish;
  127. private System.Windows.Forms.Button buttonUnSub;
  128. private System.Windows.Forms.Button buttonSub;
  129. }
  130. }