namespace WinFormsApp { partial class FormStatistics { /// /// 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() { System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend(); chart = new System.Windows.Forms.DataVisualization.Charting.Chart(); dateTimePickerTo = new DateTimePicker(); dateTimePickerFrom = new DateTimePicker(); panel1 = new Panel(); comboBox1 = new ComboBox(); checkBoxPending = new CheckBox(); checkBoxArriving = new CheckBox(); checkBoxCompleted = new CheckBox(); label2 = new Label(); label1 = new Label(); ((System.ComponentModel.ISupportInitialize)chart).BeginInit(); panel1.SuspendLayout(); SuspendLayout(); // // chart // chartArea2.Name = "ChartArea1"; chart.ChartAreas.Add(chartArea2); chart.Dock = DockStyle.Bottom; legend2.Name = "Legend1"; chart.Legends.Add(legend2); chart.Location = new Point(0, 57); chart.Name = "chart"; chart.Size = new Size(800, 393); chart.TabIndex = 0; chart.Text = "chart1"; chart.Click += chart_Click; // // dateTimePickerTo // dateTimePickerTo.Location = new Point(24, -1); dateTimePickerTo.Name = "dateTimePickerTo"; dateTimePickerTo.Size = new Size(200, 23); dateTimePickerTo.TabIndex = 1; dateTimePickerTo.ValueChanged += dateTimePickerFrom_ValueChanged; // // dateTimePickerFrom // dateTimePickerFrom.Location = new Point(262, -1); dateTimePickerFrom.Name = "dateTimePickerFrom"; dateTimePickerFrom.Size = new Size(200, 23); dateTimePickerFrom.TabIndex = 2; dateTimePickerFrom.ValueChanged += dateTimePickerTo_ValueChanged; // // panel1 // panel1.BorderStyle = BorderStyle.FixedSingle; panel1.Controls.Add(comboBox1); panel1.Controls.Add(checkBoxPending); panel1.Controls.Add(checkBoxArriving); panel1.Controls.Add(checkBoxCompleted); panel1.Controls.Add(label2); panel1.Controls.Add(label1); panel1.Controls.Add(dateTimePickerFrom); panel1.Controls.Add(dateTimePickerTo); panel1.Dock = DockStyle.Top; panel1.Location = new Point(0, 0); panel1.Name = "panel1"; panel1.Size = new Size(800, 51); panel1.TabIndex = 3; // // comboBox1 // comboBox1.FormattingEnabled = true; comboBox1.Items.AddRange(new object[] { "По поставкам", "По поставщикам" }); comboBox1.Location = new Point(542, -1); comboBox1.Name = "comboBox1"; comboBox1.Size = new Size(121, 23); comboBox1.TabIndex = 8; comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged; // // checkBoxPending // checkBoxPending.AutoSize = true; checkBoxPending.Location = new Point(3, 27); checkBoxPending.Name = "checkBoxPending"; checkBoxPending.Size = new Size(92, 19); checkBoxPending.TabIndex = 7; checkBoxPending.Text = "В ожидании"; checkBoxPending.UseVisualStyleBackColor = true; checkBoxPending.CheckedChanged += checkBoxPending_CheckedChanged; // // checkBoxArriving // checkBoxArriving.AutoSize = true; checkBoxArriving.Location = new Point(101, 27); checkBoxArriving.Name = "checkBoxArriving"; checkBoxArriving.Size = new Size(61, 19); checkBoxArriving.TabIndex = 6; checkBoxArriving.Text = "В пути"; checkBoxArriving.UseVisualStyleBackColor = true; checkBoxArriving.CheckedChanged += checkBoxArriving_CheckedChanged; // // checkBoxCompleted // checkBoxCompleted.AutoSize = true; checkBoxCompleted.Location = new Point(168, 27); checkBoxCompleted.Name = "checkBoxCompleted"; checkBoxCompleted.Size = new Size(104, 19); checkBoxCompleted.TabIndex = 5; checkBoxCompleted.Text = "Завершенные"; checkBoxCompleted.UseVisualStyleBackColor = true; checkBoxCompleted.CheckedChanged += checkBoxCompleted_CheckedChanged; // // label2 // label2.AutoSize = true; label2.Location = new Point(230, 5); label2.Name = "label2"; label2.Size = new Size(26, 15); label2.TabIndex = 4; label2.Text = "По:"; // // label1 // label1.AutoSize = true; label1.Location = new Point(3, 5); label1.Name = "label1"; label1.Size = new Size(18, 15); label1.TabIndex = 3; label1.Text = "С:"; // // FormStatistics // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(panel1); Controls.Add(chart); Name = "FormStatistics"; Text = "Статистика по поставкам"; Load += FormStatistics_Load; ((System.ComponentModel.ISupportInitialize)chart).EndInit(); panel1.ResumeLayout(false); panel1.PerformLayout(); ResumeLayout(false); } #endregion private System.Windows.Forms.DataVisualization.Charting.Chart chart; private DateTimePicker dateTimePickerTo; private DateTimePicker dateTimePickerFrom; private Panel panel1; private Label label2; private Label label1; private CheckBox checkBoxPending; private CheckBox checkBoxArriving; private CheckBox checkBoxCompleted; private ComboBox comboBox1; } }