-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFileDetails.Designer.cs
98 lines (92 loc) · 5 KB
/
FileDetails.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
namespace EntropyGlance
{
partial class FileDetails
{
/// <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.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.SuspendLayout();
//
// chart1
//
chartArea1.AxisX.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX.MajorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX.MinorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX.MinorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX2.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX2.MajorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX2.MajorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX2.MinorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisX2.MinorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY.MajorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY.MinorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY.MinorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY2.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY2.MajorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY2.MajorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY2.MinorGrid.LineColor = System.Drawing.Color.LightGray;
chartArea1.AxisY2.MinorTickMark.LineColor = System.Drawing.Color.LightGray;
chartArea1.BorderColor = System.Drawing.Color.LightGray;
chartArea1.CursorX.LineColor = System.Drawing.Color.Black;
chartArea1.CursorY.LineColor = System.Drawing.Color.Black;
chartArea1.Name = "ChartArea1";
this.chart1.ChartAreas.Add(chartArea1);
this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
this.chart1.Location = new System.Drawing.Point(0, 0);
this.chart1.Name = "chart1";
this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Excel;
series1.ChartArea = "ChartArea1";
series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.StepLine;
series1.CustomProperties = "EmptyPointValue=Zero";
series1.Name = "Series1";
series1.YValuesPerPoint = 2;
this.chart1.Series.Add(series1);
this.chart1.Size = new System.Drawing.Size(815, 486);
this.chart1.TabIndex = 0;
this.chart1.Text = "chart1";
this.chart1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseClick);
this.chart1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart1_MouseMove);
//
// FileDetails
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(815, 486);
this.Controls.Add(this.chart1);
this.Name = "FileDetails";
this.Text = "FileDetails";
this.Shown += new System.EventHandler(this.FileDetails_Shown);
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
}
}