Main.Designer.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. 
  2. namespace project
  3. {
  4. partial class Main
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.groupBox1 = new System.Windows.Forms.GroupBox();
  34. this.button4 = new System.Windows.Forms.Button();
  35. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.groupBox1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // dataGridView1
  41. //
  42. this.dataGridView1.AllowUserToAddRows = false;
  43. this.dataGridView1.AllowUserToDeleteRows = false;
  44. this.dataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(190)))), ((int)(((byte)(250)))), ((int)(((byte)(220)))));
  45. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  46. this.dataGridView1.GridColor = System.Drawing.SystemColors.ActiveBorder;
  47. this.dataGridView1.Location = new System.Drawing.Point(22, 65);
  48. this.dataGridView1.Name = "dataGridView1";
  49. this.dataGridView1.ReadOnly = true;
  50. this.dataGridView1.Size = new System.Drawing.Size(776, 385);
  51. this.dataGridView1.TabIndex = 1;
  52. this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
  53. //
  54. // pictureBox1
  55. //
  56. this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(150)))), ((int)(((byte)(125)))));
  57. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  58. this.pictureBox1.Location = new System.Drawing.Point(736, 19);
  59. this.pictureBox1.Name = "pictureBox1";
  60. this.pictureBox1.Size = new System.Drawing.Size(56, 38);
  61. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  62. this.pictureBox1.TabIndex = 4;
  63. this.pictureBox1.TabStop = false;
  64. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  65. //
  66. // button2
  67. //
  68. this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(150)))), ((int)(((byte)(125)))));
  69. this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  70. this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  71. this.button2.ForeColor = System.Drawing.SystemColors.Window;
  72. this.button2.Location = new System.Drawing.Point(145, 19);
  73. this.button2.Name = "button2";
  74. this.button2.Size = new System.Drawing.Size(123, 35);
  75. this.button2.TabIndex = 14;
  76. this.button2.Text = "Удалить";
  77. this.button2.UseVisualStyleBackColor = false;
  78. this.button2.Visible = false;
  79. this.button2.Click += new System.EventHandler(this.button2_Click);
  80. //
  81. // groupBox1
  82. //
  83. this.groupBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  84. this.groupBox1.Controls.Add(this.button4);
  85. this.groupBox1.Controls.Add(this.button2);
  86. this.groupBox1.Controls.Add(this.pictureBox1);
  87. this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  88. this.groupBox1.Location = new System.Drawing.Point(6, 0);
  89. this.groupBox1.Name = "groupBox1";
  90. this.groupBox1.Size = new System.Drawing.Size(808, 462);
  91. this.groupBox1.TabIndex = 15;
  92. this.groupBox1.TabStop = false;
  93. //
  94. // button4
  95. //
  96. this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(150)))), ((int)(((byte)(125)))));
  97. this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  98. this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  99. this.button4.ForeColor = System.Drawing.SystemColors.Window;
  100. this.button4.Location = new System.Drawing.Point(16, 19);
  101. this.button4.Name = "button4";
  102. this.button4.Size = new System.Drawing.Size(123, 35);
  103. this.button4.TabIndex = 17;
  104. this.button4.Text = "Добавить";
  105. this.button4.UseVisualStyleBackColor = false;
  106. this.button4.Visible = false;
  107. this.button4.Click += new System.EventHandler(this.button4_Click);
  108. //
  109. // Main
  110. //
  111. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  112. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  113. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(180)))), ((int)(((byte)(145)))));
  114. this.ClientSize = new System.Drawing.Size(820, 468);
  115. this.Controls.Add(this.dataGridView1);
  116. this.Controls.Add(this.groupBox1);
  117. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  118. this.Name = "Main";
  119. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  120. this.Text = "Городской справочник";
  121. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Main_FormClosed);
  122. this.Load += new System.EventHandler(this.Main_Load);
  123. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  124. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  125. this.groupBox1.ResumeLayout(false);
  126. this.ResumeLayout(false);
  127. }
  128. #endregion
  129. private System.Windows.Forms.DataGridView dataGridView1;
  130. private System.Windows.Forms.PictureBox pictureBox1;
  131. private System.Windows.Forms.Button button2;
  132. private System.Windows.Forms.GroupBox groupBox1;
  133. private System.Windows.Forms.Button button4;
  134. }
  135. }