// -------------------------------------------------------------------------------------------------------------------- // // http://oxyplot.codeplex.com, license: MIT // // -------------------------------------------------------------------------------------------------------------------- namespace ExampleBrowser { using OxyPlot; partial class MainForm { /// /// 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() { this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.treeView1 = new System.Windows.Forms.TreeView(); this.panel1 = new System.Windows.Forms.Panel(); this.transposedCheck = new System.Windows.Forms.CheckBox(); this.reversedCheck = new System.Windows.Forms.CheckBox(); this.plot1 = new OxyPlot.WindowsForms.PlotView(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.treeView1); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.plot1); this.splitContainer1.Panel2.Controls.Add(this.panel1); this.splitContainer1.Size = new System.Drawing.Size(943, 554); this.splitContainer1.SplitterDistance = 314; this.splitContainer1.TabIndex = 0; // // treeView1 // this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView1.Location = new System.Drawing.Point(0, 0); this.treeView1.Name = "treeView1"; this.treeView1.Size = new System.Drawing.Size(314, 554); this.treeView1.TabIndex = 1; // // panel1 // this.panel1.Controls.Add(this.reversedCheck); this.panel1.Controls.Add(this.transposedCheck); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 525); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(625, 29); this.panel1.TabIndex = 1; // // transposedCheck // this.transposedCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.transposedCheck.AutoSize = true; this.transposedCheck.Location = new System.Drawing.Point(453, 6); this.transposedCheck.Name = "transposedCheck"; this.transposedCheck.Size = new System.Drawing.Size(82, 17); this.transposedCheck.TabIndex = 0; this.transposedCheck.Text = "Transposed"; this.transposedCheck.UseVisualStyleBackColor = true; this.transposedCheck.CheckedChanged += new System.EventHandler(this.transposedCheck_CheckedChanged); // // reversedCheck // this.reversedCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.reversedCheck.AutoSize = true; this.reversedCheck.Location = new System.Drawing.Point(541, 6); this.reversedCheck.Name = "reversedCheck"; this.reversedCheck.Size = new System.Drawing.Size(72, 17); this.reversedCheck.TabIndex = 1; this.reversedCheck.Text = "Reversed"; this.reversedCheck.UseVisualStyleBackColor = true; this.reversedCheck.CheckedChanged += new System.EventHandler(this.reversedCheck_CheckedChanged); // // plot1 // this.plot1.BackColor = System.Drawing.Color.White; this.plot1.Dock = System.Windows.Forms.DockStyle.Fill; this.plot1.Location = new System.Drawing.Point(0, 0); this.plot1.Name = "plot1"; this.plot1.PanCursor = System.Windows.Forms.Cursors.Hand; this.plot1.Size = new System.Drawing.Size(625, 525); this.plot1.TabIndex = 0; this.plot1.Text = "plot1"; this.plot1.ZoomHorizontalCursor = System.Windows.Forms.Cursors.SizeWE; this.plot1.ZoomRectangleCursor = System.Windows.Forms.Cursors.SizeNWSE; this.plot1.ZoomVerticalCursor = System.Windows.Forms.Cursors.SizeNS; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(943, 554); this.Controls.Add(this.splitContainer1); this.Name = "MainForm"; this.Text = "OxyPlot.WindowsForms Example Browser"; this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.TreeView treeView1; private OxyPlot.WindowsForms.PlotView plot1; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.CheckBox transposedCheck; private System.Windows.Forms.CheckBox reversedCheck; } }