source: proiecte/ParallelANN/VisualBCM/GraphForm.Designer.cs @ 171

Last change on this file since 171 was 171, checked in by (none), 14 years ago
File size: 3.2 KB
Line 
1namespace VisualBCM
2{
3    partial class GraphForm
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.pictureBox1 = new System.Windows.Forms.PictureBox();
32            this.label1 = new System.Windows.Forms.Label();
33            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
34            this.SuspendLayout();
35            //
36            // pictureBox1
37            //
38            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
39            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
40            this.pictureBox1.Name = "pictureBox1";
41            this.pictureBox1.Size = new System.Drawing.Size(483, 300);
42            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
43            this.pictureBox1.TabIndex = 0;
44            this.pictureBox1.TabStop = false;
45            //
46            // label1
47            //
48            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
49            this.label1.AutoSize = true;
50            this.label1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
51            this.label1.ForeColor = System.Drawing.Color.White;
52            this.label1.Location = new System.Drawing.Point(12, 277);
53            this.label1.Name = "label1";
54            this.label1.Size = new System.Drawing.Size(0, 14);
55            this.label1.TabIndex = 1;
56            //
57            // GraphForm
58            //
59            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61            this.BackColor = System.Drawing.Color.Black;
62            this.ClientSize = new System.Drawing.Size(483, 300);
63            this.Controls.Add(this.label1);
64            this.Controls.Add(this.pictureBox1);
65            this.Name = "GraphForm";
66            this.Text = "VisualBCM Graphing";
67            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
68            this.ResumeLayout(false);
69            this.PerformLayout();
70
71        }
72
73        #endregion
74
75        private System.Windows.Forms.PictureBox pictureBox1;
76        private System.Windows.Forms.Label label1;
77    }
78}
Note: See TracBrowser for help on using the repository browser.