Main.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. namespace WindowsFormsApp4
  2. {
  3. partial class Main
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(74)))), ((int)(((byte)(58)))));
  39. this.button1.Font = new System.Drawing.Font("MingLiU-ExtB", 32.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  40. this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(221)))), ((int)(((byte)(200)))));
  41. this.button1.Location = new System.Drawing.Point(38, 297);
  42. this.button1.Name = "button1";
  43. this.button1.Size = new System.Drawing.Size(300, 80);
  44. this.button1.TabIndex = 0;
  45. this.button1.Text = "Войти";
  46. this.button1.UseVisualStyleBackColor = false;
  47. this.button1.Click += new System.EventHandler(this.button1_Click);
  48. //
  49. // button2
  50. //
  51. this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(74)))), ((int)(((byte)(58)))));
  52. this.button2.Font = new System.Drawing.Font("MingLiU-ExtB", 32.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  53. this.button2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(221)))), ((int)(((byte)(200)))));
  54. this.button2.Location = new System.Drawing.Point(38, 413);
  55. this.button2.Name = "button2";
  56. this.button2.Size = new System.Drawing.Size(300, 80);
  57. this.button2.TabIndex = 1;
  58. this.button2.Text = "Регистрация";
  59. this.button2.UseVisualStyleBackColor = false;
  60. this.button2.Click += new System.EventHandler(this.button2_Click);
  61. //
  62. // pictureBox1
  63. //
  64. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  65. this.pictureBox1.Location = new System.Drawing.Point(128, 12);
  66. this.pictureBox1.Name = "pictureBox1";
  67. this.pictureBox1.Size = new System.Drawing.Size(119, 119);
  68. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  69. this.pictureBox1.TabIndex = 2;
  70. this.pictureBox1.TabStop = false;
  71. //
  72. // label1
  73. //
  74. this.label1.Font = new System.Drawing.Font("MingLiU-ExtB", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  75. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
  76. this.label1.Location = new System.Drawing.Point(12, 134);
  77. this.label1.Name = "label1";
  78. this.label1.Size = new System.Drawing.Size(360, 129);
  79. this.label1.TabIndex = 3;
  80. this.label1.Text = "Библиотечный фонд \r\nгорода ";
  81. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  82. this.label1.Click += new System.EventHandler(this.label1_Click);
  83. //
  84. // Main
  85. //
  86. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  87. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  88. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(221)))), ((int)(((byte)(200)))));
  89. this.ClientSize = new System.Drawing.Size(384, 561);
  90. this.Controls.Add(this.label1);
  91. this.Controls.Add(this.pictureBox1);
  92. this.Controls.Add(this.button2);
  93. this.Controls.Add(this.button1);
  94. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  95. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  96. this.MaximizeBox = false;
  97. this.Name = "Main";
  98. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  99. this.Text = "Библиотечный фонд";
  100. this.Load += new System.EventHandler(this.Main_Load);
  101. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  102. this.ResumeLayout(false);
  103. }
  104. #endregion
  105. private System.Windows.Forms.Button button1;
  106. private System.Windows.Forms.Button button2;
  107. private System.Windows.Forms.PictureBox pictureBox1;
  108. private System.Windows.Forms.Label label1;
  109. }
  110. }