106 lines
4.0 KiB
C#
106 lines
4.0 KiB
C#
|
namespace WinFormsApp
|
|||
|
{
|
|||
|
partial class FormStatistics
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
|
|||
|
System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
|
|||
|
chart = new System.Windows.Forms.DataVisualization.Charting.Chart();
|
|||
|
dateTimePickerTo = new DateTimePicker();
|
|||
|
dateTimePickerFrom = new DateTimePicker();
|
|||
|
panel1 = new Panel();
|
|||
|
((System.ComponentModel.ISupportInitialize)chart).BeginInit();
|
|||
|
panel1.SuspendLayout();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// chart
|
|||
|
//
|
|||
|
chartArea1.Name = "ChartArea1";
|
|||
|
chart.ChartAreas.Add(chartArea1);
|
|||
|
chart.Dock = DockStyle.Bottom;
|
|||
|
legend1.Name = "Legend1";
|
|||
|
chart.Legends.Add(legend1);
|
|||
|
chart.Location = new Point(0, 12);
|
|||
|
chart.Name = "chart";
|
|||
|
chart.Size = new Size(800, 438);
|
|||
|
chart.TabIndex = 0;
|
|||
|
chart.Text = "chart1";
|
|||
|
chart.Click += chart_Click;
|
|||
|
//
|
|||
|
// dateTimePickerTo
|
|||
|
//
|
|||
|
dateTimePickerTo.Dock = DockStyle.Left;
|
|||
|
dateTimePickerTo.Location = new Point(0, 0);
|
|||
|
dateTimePickerTo.Name = "dateTimePickerTo";
|
|||
|
dateTimePickerTo.Size = new Size(200, 23);
|
|||
|
dateTimePickerTo.TabIndex = 1;
|
|||
|
dateTimePickerTo.ValueChanged += dateTimePickerFrom_ValueChanged;
|
|||
|
//
|
|||
|
// dateTimePickerFrom
|
|||
|
//
|
|||
|
dateTimePickerFrom.Dock = DockStyle.Right;
|
|||
|
dateTimePickerFrom.Location = new Point(598, 0);
|
|||
|
dateTimePickerFrom.Name = "dateTimePickerFrom";
|
|||
|
dateTimePickerFrom.Size = new Size(200, 23);
|
|||
|
dateTimePickerFrom.TabIndex = 2;
|
|||
|
dateTimePickerFrom.ValueChanged += dateTimePickerTo_ValueChanged;
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
panel1.BorderStyle = BorderStyle.FixedSingle;
|
|||
|
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, 24);
|
|||
|
panel1.TabIndex = 3;
|
|||
|
//
|
|||
|
// FormStatistics
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(panel1);
|
|||
|
Controls.Add(chart);
|
|||
|
Name = "FormStatistics";
|
|||
|
Text = "FormStatistics";
|
|||
|
Load += FormStatistics_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)chart).EndInit();
|
|||
|
panel1.ResumeLayout(false);
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.DataVisualization.Charting.Chart chart;
|
|||
|
private DateTimePicker dateTimePickerTo;
|
|||
|
private DateTimePicker dateTimePickerFrom;
|
|||
|
private Panel panel1;
|
|||
|
}
|
|||
|
}
|