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

Last change on this file since 171 was 171, checked in by (none), 14 years ago
File size: 6.3 KB
Line 
1namespace VisualBCM
2{
3    partial class StimulusForm
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.button1 = new System.Windows.Forms.Button();
32            this.button2 = new System.Windows.Forms.Button();
33            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
34            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
35            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
36            this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
37            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
38            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
39            this.menuStrip1.SuspendLayout();
40            this.SuspendLayout();
41            //
42            // button1
43            //
44            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
45            this.button1.Location = new System.Drawing.Point(272, 272);
46            this.button1.Name = "button1";
47            this.button1.Size = new System.Drawing.Size(75, 23);
48            this.button1.TabIndex = 0;
49            this.button1.Text = "OK";
50            this.button1.UseVisualStyleBackColor = true;
51            this.button1.Click += new System.EventHandler(this.button1_Click);
52            //
53            // button2
54            //
55            this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
56            this.button2.Location = new System.Drawing.Point(353, 272);
57            this.button2.Name = "button2";
58            this.button2.Size = new System.Drawing.Size(75, 23);
59            this.button2.TabIndex = 1;
60            this.button2.Text = "Cancel";
61            this.button2.UseVisualStyleBackColor = true;
62            this.button2.Click += new System.EventHandler(this.button2_Click);
63            //
64            // richTextBox1
65            //
66            this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
67                        | System.Windows.Forms.AnchorStyles.Left)
68                        | System.Windows.Forms.AnchorStyles.Right)));
69            this.richTextBox1.Location = new System.Drawing.Point(12, 42);
70            this.richTextBox1.Name = "richTextBox1";
71            this.richTextBox1.Size = new System.Drawing.Size(429, 224);
72            this.richTextBox1.TabIndex = 2;
73            this.richTextBox1.Text = "";
74            //
75            // menuStrip1
76            //
77            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
78            this.saveToolStripMenuItem,
79            this.loadToolStripMenuItem});
80            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
81            this.menuStrip1.Name = "menuStrip1";
82            this.menuStrip1.Size = new System.Drawing.Size(453, 24);
83            this.menuStrip1.TabIndex = 3;
84            this.menuStrip1.Text = "menuStrip1";
85            //
86            // saveToolStripMenuItem
87            //
88            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
89            this.saveToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
90            this.saveToolStripMenuItem.Text = "Save...";
91            this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
92            //
93            // loadToolStripMenuItem
94            //
95            this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
96            this.loadToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
97            this.loadToolStripMenuItem.Text = "Load...";
98            this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
99            //
100            // openFileDialog1
101            //
102            this.openFileDialog1.Filter = "Stimulus Params (*.stim)|*.stim";
103            //
104            // saveFileDialog1
105            //
106            this.saveFileDialog1.Filter = "Stimulus Params (*.stim)|*.stim";
107            //
108            // StimulusForm
109            //
110            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112            this.ClientSize = new System.Drawing.Size(453, 307);
113            this.Controls.Add(this.richTextBox1);
114            this.Controls.Add(this.button2);
115            this.Controls.Add(this.button1);
116            this.Controls.Add(this.menuStrip1);
117            this.MainMenuStrip = this.menuStrip1;
118            this.Name = "StimulusForm";
119            this.Text = "VisualBCM: Stimulus";
120            this.menuStrip1.ResumeLayout(false);
121            this.menuStrip1.PerformLayout();
122            this.ResumeLayout(false);
123            this.PerformLayout();
124
125        }
126
127        #endregion
128
129        private System.Windows.Forms.Button button1;
130        private System.Windows.Forms.Button button2;
131        private System.Windows.Forms.RichTextBox richTextBox1;
132        private System.Windows.Forms.MenuStrip menuStrip1;
133        private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
134        private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
135        private System.Windows.Forms.OpenFileDialog openFileDialog1;
136        private System.Windows.Forms.SaveFileDialog saveFileDialog1;
137    }
138}
Note: See TracBrowser for help on using the repository browser.