summaryrefslogtreecommitdiffstats
path: root/src/CS340.Plotter/Plot.Designer.cs
blob: 3b8b8d27caf20aecbb29d48e748ef104b858560e (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
namespace Plotter
{
    partial class Plot
    {
        /// <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()
        {
            this.BruteForcePlot = new System.Windows.Forms.PictureBox();
            this.EstimationPlot = new System.Windows.Forms.PictureBox();
            this.MSTPlot = new System.Windows.Forms.PictureBox();
            this.LayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            ((System.ComponentModel.ISupportInitialize)(this.BruteForcePlot)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.EstimationPlot)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MSTPlot)).BeginInit();
            this.LayoutPanel.SuspendLayout();
            this.SuspendLayout();
            // 
            // BruteForcePlot
            // 
            this.BruteForcePlot.Dock = System.Windows.Forms.DockStyle.Fill;
            this.BruteForcePlot.Location = new System.Drawing.Point(3, 3);
            this.BruteForcePlot.Name = "BruteForcePlot";
            this.BruteForcePlot.Size = new System.Drawing.Size(307, 404);
            this.BruteForcePlot.TabIndex = 0;
            this.BruteForcePlot.TabStop = false;
            this.BruteForcePlot.SizeChanged += new System.EventHandler(this.Canvas_SizeChanged);
            // 
            // EstimationPlot
            // 
            this.EstimationPlot.Dock = System.Windows.Forms.DockStyle.Fill;
            this.EstimationPlot.Location = new System.Drawing.Point(316, 3);
            this.EstimationPlot.Name = "EstimationPlot";
            this.EstimationPlot.Size = new System.Drawing.Size(307, 404);
            this.EstimationPlot.TabIndex = 1;
            this.EstimationPlot.TabStop = false;
            // 
            // MSTPlot
            // 
            this.MSTPlot.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MSTPlot.Location = new System.Drawing.Point(629, 3);
            this.MSTPlot.Name = "MSTPlot";
            this.MSTPlot.Size = new System.Drawing.Size(309, 404);
            this.MSTPlot.TabIndex = 2;
            this.MSTPlot.TabStop = false;
            // 
            // LayoutPanel
            // 
            this.LayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.LayoutPanel.ColumnCount = 3;
            this.LayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.LayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.LayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
            this.LayoutPanel.Controls.Add(this.EstimationPlot, 1, 0);
            this.LayoutPanel.Controls.Add(this.MSTPlot, 2, 0);
            this.LayoutPanel.Controls.Add(this.BruteForcePlot, 0, 0);
            this.LayoutPanel.Location = new System.Drawing.Point(12, 12);
            this.LayoutPanel.Name = "LayoutPanel";
            this.LayoutPanel.RowCount = 1;
            this.LayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.LayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.LayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.LayoutPanel.Size = new System.Drawing.Size(941, 410);
            this.LayoutPanel.TabIndex = 4;
            // 
            // Plot
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(965, 434);
            this.Controls.Add(this.LayoutPanel);
            this.Name = "Plot";
            this.Text = "Plot";
            ((System.ComponentModel.ISupportInitialize)(this.BruteForcePlot)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.EstimationPlot)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MSTPlot)).EndInit();
            this.LayoutPanel.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.PictureBox BruteForcePlot;
        private System.Windows.Forms.PictureBox EstimationPlot;
        private System.Windows.Forms.PictureBox MSTPlot;
        private System.Windows.Forms.TableLayoutPanel LayoutPanel;
    }
}