namespace RouteGuideView { partial class FormSchedule { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { dateTimePickerDate = new DateTimePicker(); dateTimePickerDepartureTime = new DateTimePicker(); dateTimePickerArrivalTime = new DateTimePicker(); dateTimePickerFrequency = new DateTimePicker(); comboBoxRoute = new ComboBox(); buttonSave = new Button(); buttonCancel = new Button(); labelRoute = new Label(); labelDate = new Label(); labelDeparture = new Label(); labelArrival = new Label(); labelFrequency = new Label(); SuspendLayout(); // // dateTimePickerDate // dateTimePickerDate.Location = new Point(101, 41); dateTimePickerDate.Name = "dateTimePickerDate"; dateTimePickerDate.Size = new Size(271, 23); dateTimePickerDate.TabIndex = 0; // // dateTimePickerDepartureTime // dateTimePickerDepartureTime.Format = DateTimePickerFormat.Time; dateTimePickerDepartureTime.Location = new Point(101, 70); dateTimePickerDepartureTime.Name = "dateTimePickerDepartureTime"; dateTimePickerDepartureTime.Size = new Size(271, 23); dateTimePickerDepartureTime.TabIndex = 1; // // dateTimePickerArrivalTime // dateTimePickerArrivalTime.Format = DateTimePickerFormat.Time; dateTimePickerArrivalTime.Location = new Point(101, 99); dateTimePickerArrivalTime.Name = "dateTimePickerArrivalTime"; dateTimePickerArrivalTime.Size = new Size(271, 23); dateTimePickerArrivalTime.TabIndex = 2; // // dateTimePickerFrequency // dateTimePickerFrequency.Format = DateTimePickerFormat.Time; dateTimePickerFrequency.Location = new Point(101, 128); dateTimePickerFrequency.Name = "dateTimePickerFrequency"; dateTimePickerFrequency.Size = new Size(271, 23); dateTimePickerFrequency.TabIndex = 3; // // comboBoxRoute // comboBoxRoute.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxRoute.FormattingEnabled = true; comboBoxRoute.Location = new Point(101, 12); comboBoxRoute.Name = "comboBoxRoute"; comboBoxRoute.Size = new Size(271, 23); comboBoxRoute.TabIndex = 4; // // buttonSave // buttonSave.Location = new Point(216, 164); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(75, 23); buttonSave.TabIndex = 7; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(297, 164); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // labelRoute // labelRoute.AutoSize = true; labelRoute.Location = new Point(12, 15); labelRoute.Name = "labelRoute"; labelRoute.Size = new Size(63, 15); labelRoute.TabIndex = 8; labelRoute.Text = "Маршрут:"; // // labelDate // labelDate.AutoSize = true; labelDate.Location = new Point(12, 47); labelDate.Name = "labelDate"; labelDate.Size = new Size(35, 15); labelDate.TabIndex = 9; labelDate.Text = "Дата:"; // // labelDeparture // labelDeparture.AutoSize = true; labelDeparture.Location = new Point(12, 76); labelDeparture.Name = "labelDeparture"; labelDeparture.Size = new Size(83, 15); labelDeparture.TabIndex = 10; labelDeparture.Text = "Отправление:"; // // labelArrival // labelArrival.AutoSize = true; labelArrival.Location = new Point(12, 105); labelArrival.Name = "labelArrival"; labelArrival.Size = new Size(67, 15); labelArrival.TabIndex = 11; labelArrival.Text = "Прибытие:"; // // labelFrequency // labelFrequency.AutoSize = true; labelFrequency.Font = new Font("Segoe UI", 8.25F, FontStyle.Regular, GraphicsUnit.Point); labelFrequency.Location = new Point(12, 135); labelFrequency.Name = "labelFrequency"; labelFrequency.Size = new Size(95, 13); labelFrequency.TabIndex = 12; labelFrequency.Text = "Периодичность:"; // // FormSchedule // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(384, 200); Controls.Add(labelFrequency); Controls.Add(labelArrival); Controls.Add(labelDeparture); Controls.Add(labelDate); Controls.Add(labelRoute); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(comboBoxRoute); Controls.Add(dateTimePickerFrequency); Controls.Add(dateTimePickerArrivalTime); Controls.Add(dateTimePickerDepartureTime); Controls.Add(dateTimePickerDate); Name = "FormSchedule"; Text = "Расписание"; Load += FormSchedule_Load; ResumeLayout(false); PerformLayout(); } #endregion private DateTimePicker dateTimePickerDate; private DateTimePicker dateTimePickerDepartureTime; private DateTimePicker dateTimePickerArrivalTime; private DateTimePicker dateTimePickerFrequency; private ComboBox comboBoxRoute; private Button buttonSave; private Button buttonCancel; private Label labelRoute; private Label labelDate; private Label labelDeparture; private Label labelArrival; private Label labelFrequency; } }