| 1 |
namespace Pybrary.Plot.Demo |
|---|
| 2 |
{ |
|---|
| 3 |
partial class Form1 |
|---|
| 4 |
{ |
|---|
| 5 |
/// <summary> |
|---|
| 6 |
/// Required designer variable. |
|---|
| 7 |
/// </summary> |
|---|
| 8 |
private System.ComponentModel.IContainer components = null; |
|---|
| 9 |
|
|---|
| 10 |
/// <summary> |
|---|
| 11 |
/// Clean up any resources being used. |
|---|
| 12 |
/// </summary> |
|---|
| 13 |
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|---|
| 14 |
protected override void Dispose(bool disposing) |
|---|
| 15 |
{ |
|---|
| 16 |
if (disposing && (components != null)) |
|---|
| 17 |
{ |
|---|
| 18 |
components.Dispose(); |
|---|
| 19 |
} |
|---|
| 20 |
base.Dispose(disposing); |
|---|
| 21 |
} |
|---|
| 22 |
|
|---|
| 23 |
#region Windows Form Designer generated code |
|---|
| 24 |
|
|---|
| 25 |
/// <summary> |
|---|
| 26 |
/// Required method for Designer support - do not modify |
|---|
| 27 |
/// the contents of this method with the code editor. |
|---|
| 28 |
/// </summary> |
|---|
| 29 |
private void InitializeComponent() |
|---|
| 30 |
{ |
|---|
| 31 |
this.tabControl1 = new System.Windows.Forms.TabControl(); |
|---|
| 32 |
this.tabPage1 = new System.Windows.Forms.TabPage(); |
|---|
| 33 |
this.standardPlotControl = new Pybrary.Plot.PlotControl(); |
|---|
| 34 |
this.standardMenuStrip = new System.Windows.Forms.MenuStrip(); |
|---|
| 35 |
this.tabPage2 = new System.Windows.Forms.TabPage(); |
|---|
| 36 |
this.manyPlotControl = new Pybrary.Plot.PlotControl(); |
|---|
| 37 |
this.manyMenuStrip = new System.Windows.Forms.MenuStrip(); |
|---|
| 38 |
this.tabPage3 = new System.Windows.Forms.TabPage(); |
|---|
| 39 |
this.datePlotControl = new Pybrary.Plot.PlotControl(); |
|---|
| 40 |
this.dateMenuStrip = new System.Windows.Forms.MenuStrip(); |
|---|
| 41 |
this.tabPage4 = new System.Windows.Forms.TabPage(); |
|---|
| 42 |
this.stackedPlotControl = new Pybrary.Plot.PlotControl(); |
|---|
| 43 |
this.stackedMenuStrip = new System.Windows.Forms.MenuStrip(); |
|---|
| 44 |
this.tabControl1.SuspendLayout(); |
|---|
| 45 |
this.tabPage1.SuspendLayout(); |
|---|
| 46 |
this.tabPage2.SuspendLayout(); |
|---|
| 47 |
this.tabPage3.SuspendLayout(); |
|---|
| 48 |
this.tabPage4.SuspendLayout(); |
|---|
| 49 |
this.SuspendLayout(); |
|---|
| 50 |
// |
|---|
| 51 |
// tabControl1 |
|---|
| 52 |
// |
|---|
| 53 |
this.tabControl1.Controls.Add(this.tabPage1); |
|---|
| 54 |
this.tabControl1.Controls.Add(this.tabPage2); |
|---|
| 55 |
this.tabControl1.Controls.Add(this.tabPage3); |
|---|
| 56 |
this.tabControl1.Controls.Add(this.tabPage4); |
|---|
| 57 |
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; |
|---|
| 58 |
this.tabControl1.Location = new System.Drawing.Point(0, 0); |
|---|
| 59 |
this.tabControl1.Name = "tabControl1"; |
|---|
| 60 |
this.tabControl1.SelectedIndex = 0; |
|---|
| 61 |
this.tabControl1.Size = new System.Drawing.Size(631, 484); |
|---|
| 62 |
this.tabControl1.TabIndex = 0; |
|---|
| 63 |
// |
|---|
| 64 |
// tabPage1 |
|---|
| 65 |
// |
|---|
| 66 |
this.tabPage1.Controls.Add(this.standardPlotControl); |
|---|
| 67 |
this.tabPage1.Controls.Add(this.standardMenuStrip); |
|---|
| 68 |
this.tabPage1.Location = new System.Drawing.Point(4, 22); |
|---|
| 69 |
this.tabPage1.Name = "tabPage1"; |
|---|
| 70 |
this.tabPage1.Padding = new System.Windows.Forms.Padding(3); |
|---|
| 71 |
this.tabPage1.Size = new System.Drawing.Size(623, 458); |
|---|
| 72 |
this.tabPage1.TabIndex = 0; |
|---|
| 73 |
this.tabPage1.Text = "Standard XY"; |
|---|
| 74 |
this.tabPage1.UseVisualStyleBackColor = true; |
|---|
| 75 |
// |
|---|
| 76 |
// standardPlotControl |
|---|
| 77 |
// |
|---|
| 78 |
this.standardPlotControl.Dock = System.Windows.Forms.DockStyle.Fill; |
|---|
| 79 |
this.standardPlotControl.Location = new System.Drawing.Point(3, 27); |
|---|
| 80 |
this.standardPlotControl.Name = "standardPlotControl"; |
|---|
| 81 |
this.standardPlotControl.Plot = null; |
|---|
| 82 |
this.standardPlotControl.Size = new System.Drawing.Size(617, 428); |
|---|
| 83 |
this.standardPlotControl.TabIndex = 0; |
|---|
| 84 |
this.standardPlotControl.Text = "plotControl1"; |
|---|
| 85 |
// |
|---|
| 86 |
// standardMenuStrip |
|---|
| 87 |
// |
|---|
| 88 |
this.standardMenuStrip.Location = new System.Drawing.Point(3, 3); |
|---|
| 89 |
this.standardMenuStrip.Name = "standardMenuStrip"; |
|---|
| 90 |
this.standardMenuStrip.Size = new System.Drawing.Size(617, 24); |
|---|
| 91 |
this.standardMenuStrip.TabIndex = 1; |
|---|
| 92 |
this.standardMenuStrip.Text = "menuStrip1"; |
|---|
| 93 |
// |
|---|
| 94 |
// tabPage2 |
|---|
| 95 |
// |
|---|
| 96 |
this.tabPage2.Controls.Add(this.manyPlotControl); |
|---|
| 97 |
this.tabPage2.Controls.Add(this.manyMenuStrip); |
|---|
| 98 |
this.tabPage2.Location = new System.Drawing.Point(4, 22); |
|---|
| 99 |
this.tabPage2.Name = "tabPage2"; |
|---|
| 100 |
this.tabPage2.Padding = new System.Windows.Forms.Padding(3); |
|---|
| 101 |
this.tabPage2.Size = new System.Drawing.Size(623, 458); |
|---|
| 102 |
this.tabPage2.TabIndex = 1; |
|---|
| 103 |
this.tabPage2.Text = "Many Y Axes"; |
|---|
| 104 |
this.tabPage2.UseVisualStyleBackColor = true; |
|---|
| 105 |
// |
|---|
| 106 |
// manyPlotControl |
|---|
| 107 |
// |
|---|
| 108 |
this.manyPlotControl.Dock = System.Windows.Forms.DockStyle.Fill; |
|---|
| 109 |
this.manyPlotControl.Location = new System.Drawing.Point(3, 27); |
|---|
| 110 |
this.manyPlotControl.Name = "manyPlotControl"; |
|---|
| 111 |
this.manyPlotControl.Plot = null; |
|---|
| 112 |
this.manyPlotControl.Size = new System.Drawing.Size(617, 428); |
|---|
| 113 |
this.manyPlotControl.TabIndex = 0; |
|---|
| 114 |
this.manyPlotControl.Text = "plotControl1"; |
|---|
| 115 |
// |
|---|
| 116 |
// manyMenuStrip |
|---|
| 117 |
// |
|---|
| 118 |
this.manyMenuStrip.Location = new System.Drawing.Point(3, 3); |
|---|
| 119 |
this.manyMenuStrip.Name = "manyMenuStrip"; |
|---|
| 120 |
this.manyMenuStrip.Size = new System.Drawing.Size(617, 24); |
|---|
| 121 |
this.manyMenuStrip.TabIndex = 1; |
|---|
| 122 |
this.manyMenuStrip.Text = "menuStrip1"; |
|---|
| 123 |
// |
|---|
| 124 |
// tabPage3 |
|---|
| 125 |
// |
|---|
| 126 |
this.tabPage3.Controls.Add(this.datePlotControl); |
|---|
| 127 |
this.tabPage3.Controls.Add(this.dateMenuStrip); |
|---|
| 128 |
this.tabPage3.Location = new System.Drawing.Point(4, 22); |
|---|
| 129 |
this.tabPage3.Name = "tabPage3"; |
|---|
| 130 |
this.tabPage3.Padding = new System.Windows.Forms.Padding(3); |
|---|
| 131 |
this.tabPage3.Size = new System.Drawing.Size(623, 458); |
|---|
| 132 |
this.tabPage3.TabIndex = 2; |
|---|
| 133 |
this.tabPage3.Text = "Date X Axis"; |
|---|
| 134 |
this.tabPage3.UseVisualStyleBackColor = true; |
|---|
| 135 |
// |
|---|
| 136 |
// datePlotControl |
|---|
| 137 |
// |
|---|
| 138 |
this.datePlotControl.Dock = System.Windows.Forms.DockStyle.Fill; |
|---|
| 139 |
this.datePlotControl.Location = new System.Drawing.Point(3, 27); |
|---|
| 140 |
this.datePlotControl.Name = "datePlotControl"; |
|---|
| 141 |
this.datePlotControl.Plot = null; |
|---|
| 142 |
this.datePlotControl.Size = new System.Drawing.Size(617, 428); |
|---|
| 143 |
this.datePlotControl.TabIndex = 1; |
|---|
| 144 |
this.datePlotControl.Text = "plotControl1"; |
|---|
| 145 |
// |
|---|
| 146 |
// dateMenuStrip |
|---|
| 147 |
// |
|---|
| 148 |
this.dateMenuStrip.Location = new System.Drawing.Point(3, 3); |
|---|
| 149 |
this.dateMenuStrip.Name = "dateMenuStrip"; |
|---|
| 150 |
this.dateMenuStrip.Size = new System.Drawing.Size(617, 24); |
|---|
| 151 |
this.dateMenuStrip.TabIndex = 0; |
|---|
| 152 |
this.dateMenuStrip.Text = "menuStrip1"; |
|---|
| 153 |
// |
|---|
| 154 |
// tabPage4 |
|---|
| 155 |
// |
|---|
| 156 |
this.tabPage4.Controls.Add(this.stackedPlotControl); |
|---|
| 157 |
this.tabPage4.Controls.Add(this.stackedMenuStrip); |
|---|
| 158 |
this.tabPage4.Location = new System.Drawing.Point(4, 22); |
|---|
| 159 |
this.tabPage4.Name = "tabPage4"; |
|---|
| 160 |
this.tabPage4.Padding = new System.Windows.Forms.Padding(3); |
|---|
| 161 |
this.tabPage4.Size = new System.Drawing.Size(623, 458); |
|---|
| 162 |
this.tabPage4.TabIndex = 3; |
|---|
| 163 |
this.tabPage4.Text = "Stacked Plot"; |
|---|
| 164 |
this.tabPage4.UseVisualStyleBackColor = true; |
|---|
| 165 |
// |
|---|
| 166 |
// stackedPlotControl |
|---|
| 167 |
// |
|---|
| 168 |
this.stackedPlotControl.Dock = System.Windows.Forms.DockStyle.Fill; |
|---|
| 169 |
this.stackedPlotControl.Location = new System.Drawing.Point(3, 27); |
|---|
| 170 |
this.stackedPlotControl.Name = "stackedPlotControl"; |
|---|
| 171 |
this.stackedPlotControl.Plot = null; |
|---|
| 172 |
this.stackedPlotControl.Size = new System.Drawing.Size(617, 428); |
|---|
| 173 |
this.stackedPlotControl.TabIndex = 0; |
|---|
| 174 |
this.stackedPlotControl.Text = "plotControl1"; |
|---|
| 175 |
// |
|---|
| 176 |
// stackedMenuStrip |
|---|
| 177 |
// |
|---|
| 178 |
this.stackedMenuStrip.Location = new System.Drawing.Point(3, 3); |
|---|
| 179 |
this.stackedMenuStrip.Name = "stackedMenuStrip"; |
|---|
| 180 |
this.stackedMenuStrip.Size = new System.Drawing.Size(617, 24); |
|---|
| 181 |
this.stackedMenuStrip.TabIndex = 1; |
|---|
| 182 |
this.stackedMenuStrip.Text = "menuStrip1"; |
|---|
| 183 |
// |
|---|
| 184 |
// Form1 |
|---|
| 185 |
// |
|---|
| 186 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
|---|
| 187 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|---|
| 188 |
this.ClientSize = new System.Drawing.Size(631, 484); |
|---|
| 189 |
this.Controls.Add(this.tabControl1); |
|---|
| 190 |
this.MainMenuStrip = this.manyMenuStrip; |
|---|
| 191 |
this.Name = "Form1"; |
|---|
| 192 |
this.Text = "Pybrary.Plot Demo"; |
|---|
| 193 |
this.tabControl1.ResumeLayout(false); |
|---|
| 194 |
this.tabPage1.ResumeLayout(false); |
|---|
| 195 |
this.tabPage1.PerformLayout(); |
|---|
| 196 |
this.tabPage2.ResumeLayout(false); |
|---|
| 197 |
this.tabPage2.PerformLayout(); |
|---|
| 198 |
this.tabPage3.ResumeLayout(false); |
|---|
| 199 |
this.tabPage3.PerformLayout(); |
|---|
| 200 |
this.tabPage4.ResumeLayout(false); |
|---|
| 201 |
this.tabPage4.PerformLayout(); |
|---|
| 202 |
this.ResumeLayout(false); |
|---|
| 203 |
|
|---|
| 204 |
} |
|---|
| 205 |
|
|---|
| 206 |
#endregion |
|---|
| 207 |
|
|---|
| 208 |
private System.Windows.Forms.TabControl tabControl1; |
|---|
| 209 |
private System.Windows.Forms.TabPage tabPage1; |
|---|
| 210 |
private System.Windows.Forms.TabPage tabPage2; |
|---|
| 211 |
private System.Windows.Forms.TabPage tabPage3; |
|---|
| 212 |
private System.Windows.Forms.TabPage tabPage4; |
|---|
| 213 |
private PlotControl standardPlotControl; |
|---|
| 214 |
private PlotControl manyPlotControl; |
|---|
| 215 |
private System.Windows.Forms.MenuStrip manyMenuStrip; |
|---|
| 216 |
private System.Windows.Forms.MenuStrip standardMenuStrip; |
|---|
| 217 |
private PlotControl datePlotControl; |
|---|
| 218 |
private System.Windows.Forms.MenuStrip dateMenuStrip; |
|---|
| 219 |
private PlotControl stackedPlotControl; |
|---|
| 220 |
private System.Windows.Forms.MenuStrip stackedMenuStrip; |
|---|
| 221 |
|
|---|
| 222 |
} |
|---|
| 223 |
} |
|---|
| 224 |
|
|---|