Form3.Designer.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. namespace konkursTest14
  2. {
  3. partial class form3
  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. this.components = new System.ComponentModel.Container();
  29. this.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tabPage1 = new System.Windows.Forms.TabPage();
  31. this.bronirovenieBindingSource = new System.Windows.Forms.BindingSource(this.components);
  32. this.konkursDataSet = new konkursTest14.konkursDataSet();
  33. this.tabPage2 = new System.Windows.Forms.TabPage();
  34. this.bronirovenieTableAdapter = new konkursTest14.konkursDataSetTableAdapters.bronirovenieTableAdapter();
  35. this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
  36. this.comboBox1 = new System.Windows.Forms.ComboBox();
  37. this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
  38. this.button1 = new System.Windows.Forms.Button();
  39. this.tabControl1.SuspendLayout();
  40. this.tabPage1.SuspendLayout();
  41. ((System.ComponentModel.ISupportInitialize)(this.bronirovenieBindingSource)).BeginInit();
  42. ((System.ComponentModel.ISupportInitialize)(this.konkursDataSet)).BeginInit();
  43. this.SuspendLayout();
  44. //
  45. // tabControl1
  46. //
  47. this.tabControl1.Controls.Add(this.tabPage1);
  48. this.tabControl1.Controls.Add(this.tabPage2);
  49. this.tabControl1.Location = new System.Drawing.Point(12, 7);
  50. this.tabControl1.Name = "tabControl1";
  51. this.tabControl1.SelectedIndex = 0;
  52. this.tabControl1.Size = new System.Drawing.Size(955, 456);
  53. this.tabControl1.TabIndex = 0;
  54. //
  55. // tabPage1
  56. //
  57. this.tabPage1.Controls.Add(this.button1);
  58. this.tabPage1.Controls.Add(this.dateTimePicker2);
  59. this.tabPage1.Controls.Add(this.comboBox1);
  60. this.tabPage1.Controls.Add(this.dateTimePicker1);
  61. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  62. this.tabPage1.Name = "tabPage1";
  63. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  64. this.tabPage1.Size = new System.Drawing.Size(947, 430);
  65. this.tabPage1.TabIndex = 0;
  66. this.tabPage1.Text = "е";
  67. this.tabPage1.UseVisualStyleBackColor = true;
  68. //
  69. // bronirovenieBindingSource
  70. //
  71. this.bronirovenieBindingSource.DataMember = "bronirovenie";
  72. this.bronirovenieBindingSource.DataSource = this.konkursDataSet;
  73. //
  74. // konkursDataSet
  75. //
  76. this.konkursDataSet.DataSetName = "konkursDataSet";
  77. this.konkursDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  78. //
  79. // tabPage2
  80. //
  81. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  82. this.tabPage2.Name = "tabPage2";
  83. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  84. this.tabPage2.Size = new System.Drawing.Size(947, 430);
  85. this.tabPage2.TabIndex = 1;
  86. this.tabPage2.Text = "Номера";
  87. this.tabPage2.UseVisualStyleBackColor = true;
  88. //
  89. // bronirovenieTableAdapter
  90. //
  91. this.bronirovenieTableAdapter.ClearBeforeFill = true;
  92. //
  93. // dateTimePicker1
  94. //
  95. this.dateTimePicker1.Location = new System.Drawing.Point(43, 26);
  96. this.dateTimePicker1.Name = "dateTimePicker1";
  97. this.dateTimePicker1.Size = new System.Drawing.Size(200, 20);
  98. this.dateTimePicker1.TabIndex = 2;
  99. //
  100. // comboBox1
  101. //
  102. this.comboBox1.FormattingEnabled = true;
  103. this.comboBox1.Items.AddRange(new object[] {
  104. "1-комнатный",
  105. "2-комнатный"});
  106. this.comboBox1.Location = new System.Drawing.Point(267, 80);
  107. this.comboBox1.Name = "comboBox1";
  108. this.comboBox1.Size = new System.Drawing.Size(200, 21);
  109. this.comboBox1.TabIndex = 3;
  110. //
  111. // dateTimePicker2
  112. //
  113. this.dateTimePicker2.Location = new System.Drawing.Point(267, 26);
  114. this.dateTimePicker2.Name = "dateTimePicker2";
  115. this.dateTimePicker2.Size = new System.Drawing.Size(200, 20);
  116. this.dateTimePicker2.TabIndex = 4;
  117. //
  118. // button1
  119. //
  120. this.button1.Location = new System.Drawing.Point(267, 146);
  121. this.button1.Name = "button1";
  122. this.button1.Size = new System.Drawing.Size(124, 26);
  123. this.button1.TabIndex = 5;
  124. this.button1.Text = "Показать номера";
  125. this.button1.UseVisualStyleBackColor = true;
  126. //
  127. // form3
  128. //
  129. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  130. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  131. this.ClientSize = new System.Drawing.Size(996, 476);
  132. this.Controls.Add(this.tabControl1);
  133. this.Name = "form3";
  134. this.Text = "Панель менеджера";
  135. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form3_FormClosing);
  136. this.Load += new System.EventHandler(this.Form3_Load);
  137. this.tabControl1.ResumeLayout(false);
  138. this.tabPage1.ResumeLayout(false);
  139. ((System.ComponentModel.ISupportInitialize)(this.bronirovenieBindingSource)).EndInit();
  140. ((System.ComponentModel.ISupportInitialize)(this.konkursDataSet)).EndInit();
  141. this.ResumeLayout(false);
  142. }
  143. #endregion
  144. private System.Windows.Forms.TabControl tabControl1;
  145. private System.Windows.Forms.TabPage tabPage1;
  146. private System.Windows.Forms.TabPage tabPage2;
  147. private konkursDataSet konkursDataSet;
  148. private System.Windows.Forms.BindingSource bronirovenieBindingSource;
  149. private konkursDataSetTableAdapters.bronirovenieTableAdapter bronirovenieTableAdapter;
  150. private System.Windows.Forms.DateTimePicker dateTimePicker1;
  151. private System.Windows.Forms.ComboBox comboBox1;
  152. private System.Windows.Forms.Button button1;
  153. private System.Windows.Forms.DateTimePicker dateTimePicker2;
  154. }
  155. }