Captcha.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. 
  2. namespace OOO_Creation
  3. {
  4. partial class Captcha
  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.components = new System.ComponentModel.Container();
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.timer1 = new System.Windows.Forms.Timer(this.components);
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // pictureBox1
  38. //
  39. this.pictureBox1.Image = global::OOO_Creation.Properties.Resources.Снимок;
  40. this.pictureBox1.Location = new System.Drawing.Point(118, 176);
  41. this.pictureBox1.Name = "pictureBox1";
  42. this.pictureBox1.Size = new System.Drawing.Size(253, 83);
  43. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  44. this.pictureBox1.TabIndex = 9;
  45. this.pictureBox1.TabStop = false;
  46. //
  47. // textBox1
  48. //
  49. this.textBox1.Font = new System.Drawing.Font("Comic Sans MS", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  50. this.textBox1.Location = new System.Drawing.Point(133, 65);
  51. this.textBox1.Multiline = true;
  52. this.textBox1.Name = "textBox1";
  53. this.textBox1.Size = new System.Drawing.Size(226, 57);
  54. this.textBox1.TabIndex = 10;
  55. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  56. //
  57. // button1
  58. //
  59. this.button1.Location = new System.Drawing.Point(178, 128);
  60. this.button1.Name = "button1";
  61. this.button1.Size = new System.Drawing.Size(136, 37);
  62. this.button1.TabIndex = 11;
  63. this.button1.Text = "OK";
  64. this.button1.UseVisualStyleBackColor = true;
  65. this.button1.Click += new System.EventHandler(this.button1_Click);
  66. //
  67. // timer1
  68. //
  69. this.timer1.Enabled = true;
  70. this.timer1.Interval = 1000;
  71. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  72. //
  73. // Captcha
  74. //
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  76. this.ClientSize = new System.Drawing.Size(489, 305);
  77. this.Controls.Add(this.button1);
  78. this.Controls.Add(this.textBox1);
  79. this.Controls.Add(this.pictureBox1);
  80. this.Name = "Captcha";
  81. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  82. this.Text = "Captcha";
  83. this.Load += new System.EventHandler(this.Captcha_Load);
  84. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  85. this.ResumeLayout(false);
  86. this.PerformLayout();
  87. }
  88. #endregion
  89. private System.Windows.Forms.PictureBox pictureBox1;
  90. private System.Windows.Forms.TextBox textBox1;
  91. private System.Windows.Forms.Button button1;
  92. private System.Windows.Forms.Timer timer1;
  93. }
  94. }