Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.44 KB | None | 0 0
  1. this.label1 = new System.Windows.Forms.Label();
  2. this.label2 = new System.Windows.Forms.Label();
  3. this.label3 = new System.Windows.Forms.Label();
  4. this.label4 = new System.Windows.Forms.Label();
  5. this.textBoxQuestion = new System.Windows.Forms.TextBox();
  6. this.textBoxAnswer = new System.Windows.Forms.TextBox();
  7. this.textBoxAbout = new System.Windows.Forms.TextBox();
  8. this.button1 = new System.Windows.Forms.Button();
  9. this.SuspendLayout();
  10. //
  11. // label1
  12. //
  13. this.label1.AutoSize = true;
  14. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  15. this.label1.Location = new System.Drawing.Point(61, 56);
  16. this.label1.Name = "label1";
  17. this.label1.Size = new System.Drawing.Size(275, 32);
  18. this.label1.TabIndex = 0;
  19. this.label1.Text = "Ask a Friend Service";
  20. //
  21. // label2
  22. //
  23. this.label2.AutoSize = true;
  24. this.label2.Location = new System.Drawing.Point(64, 104);
  25. this.label2.Name = "label2";
  26. this.label2.Size = new System.Drawing.Size(125, 17);
  27. this.label2.TabIndex = 1;
  28. this.label2.Text = "Ask your question:";
  29. //
  30. // label3
  31. //
  32. this.label3.AutoSize = true;
  33. this.label3.Location = new System.Drawing.Point(64, 322);
  34. this.label3.Name = "label3";
  35. this.label3.Size = new System.Drawing.Size(93, 17);
  36. this.label3.TabIndex = 2;
  37. this.label3.Text = "Wise Answer:";
  38. //
  39. // label4
  40. //
  41. this.label4.AutoSize = true;
  42. this.label4.Location = new System.Drawing.Point(64, 370);
  43. this.label4.Name = "label4";
  44. this.label4.Size = new System.Drawing.Size(110, 17);
  45. this.label4.TabIndex = 3;
  46. this.label4.Text = "About Question:";
  47. //
  48. // textBoxQuestion
  49. //
  50. this.textBoxQuestion.Location = new System.Drawing.Point(195, 101);
  51. this.textBoxQuestion.Multiline = true;
  52. this.textBoxQuestion.Name = "textBoxQuestion";
  53. this.textBoxQuestion.Size = new System.Drawing.Size(549, 164);
  54. this.textBoxQuestion.TabIndex = 4;
  55. //
  56. // textBoxAnswer
  57. //
  58. this.textBoxAnswer.Location = new System.Drawing.Point(195, 322);
  59. this.textBoxAnswer.Name = "textBoxAnswer";
  60. this.textBoxAnswer.ReadOnly = true;
  61. this.textBoxAnswer.Size = new System.Drawing.Size(549, 22);
  62. this.textBoxAnswer.TabIndex = 5;
  63. //
  64. // textBoxAbout
  65. //
  66. this.textBoxAbout.Location = new System.Drawing.Point(195, 370);
  67. this.textBoxAbout.Name = "textBoxAbout";
  68. this.textBoxAbout.ReadOnly = true;
  69. this.textBoxAbout.Size = new System.Drawing.Size(549, 22);
  70. this.textBoxAbout.TabIndex = 6;
  71. //
  72. // button1
  73. //
  74. this.button1.Location = new System.Drawing.Point(626, 272);
  75. this.button1.Name = "button1";
  76. this.button1.Size = new System.Drawing.Size(117, 23);
  77. this.button1.TabIndex = 7;
  78. this.button1.Text = "Ask";
  79. this.button1.UseVisualStyleBackColor = true;
  80. this.button1.Click += new System.EventHandler(this.ask_Click);
  81. //
  82. // Form1
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(800, 450);
  87. this.Controls.Add(this.button1);
  88. this.Controls.Add(this.textBoxAbout);
  89. this.Controls.Add(this.textBoxAnswer);
  90. this.Controls.Add(this.textBoxQuestion);
  91. this.Controls.Add(this.label4);
  92. this.Controls.Add(this.label3);
  93. this.Controls.Add(this.label2);
  94. this.Controls.Add(this.label1);
  95. this.Name = "Form1";
  96. this.Text = "Form1";
  97. this.ResumeLayout(false);
  98. this.PerformLayout();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement