Poch.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. namespace Servise.Forms.User
  2. {
  3. partial class Poch
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Poch));
  29. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  30. this.label30 = new System.Windows.Forms.Label();
  31. this.Client = new System.Windows.Forms.ComboBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.button3 = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // dataGridView1
  38. //
  39. this.dataGridView1.BackgroundColor = System.Drawing.Color.WhiteSmoke;
  40. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  41. this.dataGridView1.Location = new System.Drawing.Point(122, 242);
  42. this.dataGridView1.Name = "dataGridView1";
  43. this.dataGridView1.RowHeadersWidth = 51;
  44. this.dataGridView1.Size = new System.Drawing.Size(731, 200);
  45. this.dataGridView1.TabIndex = 0;
  46. this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
  47. //
  48. // label30
  49. //
  50. this.label30.AutoSize = true;
  51. this.label30.BackColor = System.Drawing.Color.Transparent;
  52. this.label30.Font = new System.Drawing.Font("Lucida Sans", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  53. this.label30.Location = new System.Drawing.Point(125, 185);
  54. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  55. this.label30.Name = "label30";
  56. this.label30.Size = new System.Drawing.Size(44, 15);
  57. this.label30.TabIndex = 40;
  58. this.label30.Text = "Клиент";
  59. //
  60. // Client
  61. //
  62. this.Client.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  63. this.Client.FormattingEnabled = true;
  64. this.Client.Location = new System.Drawing.Point(175, 181);
  65. this.Client.Margin = new System.Windows.Forms.Padding(2);
  66. this.Client.Name = "Client";
  67. this.Client.Size = new System.Drawing.Size(200, 23);
  68. this.Client.TabIndex = 39;
  69. this.Client.SelectedIndexChanged += new System.EventHandler(this.Client_SelectedIndexChanged);
  70. //
  71. // button1
  72. //
  73. this.button1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  74. this.button1.Font = new System.Drawing.Font("Lucida Sans", 9.75F, System.Drawing.FontStyle.Bold);
  75. this.button1.Location = new System.Drawing.Point(122, 217);
  76. this.button1.Margin = new System.Windows.Forms.Padding(2);
  77. this.button1.Name = "button1";
  78. this.button1.Size = new System.Drawing.Size(160, 20);
  79. this.button1.TabIndex = 43;
  80. this.button1.Text = "Поиск клиента";
  81. this.button1.UseVisualStyleBackColor = false;
  82. this.button1.Click += new System.EventHandler(this.button1_Click);
  83. //
  84. // button3
  85. //
  86. this.button3.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  87. this.button3.Font = new System.Drawing.Font("Lucida Sans", 9.75F, System.Drawing.FontStyle.Bold);
  88. this.button3.Location = new System.Drawing.Point(318, 217);
  89. this.button3.Margin = new System.Windows.Forms.Padding(2);
  90. this.button3.Name = "button3";
  91. this.button3.Size = new System.Drawing.Size(160, 20);
  92. this.button3.TabIndex = 44;
  93. this.button3.Text = "Назад";
  94. this.button3.UseVisualStyleBackColor = false;
  95. this.button3.Click += new System.EventHandler(this.button3_Click);
  96. //
  97. // Poch
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101. this.BackColor = System.Drawing.Color.Gold;
  102. this.BackgroundImage = global::Servise.Properties.Resources.auto_21;
  103. this.ClientSize = new System.Drawing.Size(1008, 680);
  104. this.Controls.Add(this.button3);
  105. this.Controls.Add(this.button1);
  106. this.Controls.Add(this.label30);
  107. this.Controls.Add(this.Client);
  108. this.Controls.Add(this.dataGridView1);
  109. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  110. this.MaximumSize = new System.Drawing.Size(1024, 719);
  111. this.MinimumSize = new System.Drawing.Size(1024, 719);
  112. this.Name = "Poch";
  113. this.Text = "Починка";
  114. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Poch_FormClosed);
  115. this.Load += new System.EventHandler(this.Poch_Load);
  116. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  117. this.ResumeLayout(false);
  118. this.PerformLayout();
  119. }
  120. #endregion
  121. private System.Windows.Forms.DataGridView dataGridView1;
  122. private System.Windows.Forms.Label label30;
  123. private System.Windows.Forms.ComboBox Client;
  124. private System.Windows.Forms.Button button1;
  125. private System.Windows.Forms.Button button3;
  126. }
  127. }