Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / IronPythonViewEngine / WindowsApplication1 / Form1.Designer.cs
blobba5696b27ac82f2a01f6c6185b775ce13cfe6167
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace WindowsApplication1
17 partial class Form1
19 /// <summary>
20 /// Required designer variable.
21 /// </summary>
22 private System.ComponentModel.IContainer components = null;
24 /// <summary>
25 /// Clean up any resources being used.
26 /// </summary>
27 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
28 protected override void Dispose(bool disposing)
30 if (disposing && (components != null))
32 components.Dispose();
34 base.Dispose(disposing);
37 #region Windows Form Designer generated code
39 /// <summary>
40 /// Required method for Designer support - do not modify
41 /// the contents of this method with the code editor.
42 /// </summary>
43 private void InitializeComponent()
45 this.tabControl1 = new System.Windows.Forms.TabControl();
46 this.tabPage1 = new System.Windows.Forms.TabPage();
47 this.tabPage2 = new System.Windows.Forms.TabPage();
48 this.functions = new System.Windows.Forms.TextBox();
49 this.script = new System.Windows.Forms.TextBox();
50 this.output = new System.Windows.Forms.TextBox();
51 this.button1 = new System.Windows.Forms.Button();
52 this.button2 = new System.Windows.Forms.Button();
53 this.button3 = new System.Windows.Forms.Button();
54 this.tabControl1.SuspendLayout();
55 this.tabPage1.SuspendLayout();
56 this.tabPage2.SuspendLayout();
57 this.SuspendLayout();
58 //
59 // tabControl1
60 //
61 this.tabControl1.Controls.Add(this.tabPage1);
62 this.tabControl1.Controls.Add(this.tabPage2);
63 this.tabControl1.Location = new System.Drawing.Point(10, 12);
64 this.tabControl1.Name = "tabControl1";
65 this.tabControl1.SelectedIndex = 0;
66 this.tabControl1.Size = new System.Drawing.Size(762, 431);
67 this.tabControl1.TabIndex = 0;
68 //
69 // tabPage1
70 //
71 this.tabPage1.Controls.Add(this.functions);
72 this.tabPage1.Location = new System.Drawing.Point(4, 22);
73 this.tabPage1.Name = "tabPage1";
74 this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
75 this.tabPage1.Size = new System.Drawing.Size(754, 405);
76 this.tabPage1.TabIndex = 0;
77 this.tabPage1.Text = "functions";
78 this.tabPage1.UseVisualStyleBackColor = true;
79 //
80 // tabPage2
81 //
82 this.tabPage2.Controls.Add(this.script);
83 this.tabPage2.Location = new System.Drawing.Point(4, 22);
84 this.tabPage2.Name = "tabPage2";
85 this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
86 this.tabPage2.Size = new System.Drawing.Size(545, 405);
87 this.tabPage2.TabIndex = 1;
88 this.tabPage2.Text = "script";
89 this.tabPage2.UseVisualStyleBackColor = true;
90 //
91 // functions
92 //
93 this.functions.Location = new System.Drawing.Point(7, 8);
94 this.functions.Multiline = true;
95 this.functions.Name = "functions";
96 this.functions.ScrollBars = System.Windows.Forms.ScrollBars.Both;
97 this.functions.Size = new System.Drawing.Size(525, 374);
98 this.functions.TabIndex = 0;
99 //
100 // script
102 this.script.Location = new System.Drawing.Point(15, 23);
103 this.script.Multiline = true;
104 this.script.Name = "script";
105 this.script.ScrollBars = System.Windows.Forms.ScrollBars.Both;
106 this.script.Size = new System.Drawing.Size(514, 321);
107 this.script.TabIndex = 0;
109 // output
111 this.output.Location = new System.Drawing.Point(10, 461);
112 this.output.Multiline = true;
113 this.output.Name = "output";
114 this.output.ScrollBars = System.Windows.Forms.ScrollBars.Both;
115 this.output.Size = new System.Drawing.Size(624, 100);
116 this.output.TabIndex = 1;
118 // button1
120 this.button1.Location = new System.Drawing.Point(650, 460);
121 this.button1.Name = "button1";
122 this.button1.Size = new System.Drawing.Size(118, 23);
123 this.button1.TabIndex = 2;
124 this.button1.Text = "Exec";
125 this.button1.UseVisualStyleBackColor = true;
126 this.button1.Click += new System.EventHandler(this.button1_Click);
128 // button2
130 this.button2.Location = new System.Drawing.Point(650, 536);
131 this.button2.Name = "button2";
132 this.button2.Size = new System.Drawing.Size(118, 25);
133 this.button2.TabIndex = 3;
134 this.button2.Text = "Clear";
135 this.button2.UseVisualStyleBackColor = true;
136 this.button2.Click += new System.EventHandler(this.button2_Click);
138 // button3
140 this.button3.Location = new System.Drawing.Point(650, 489);
141 this.button3.Name = "button3";
142 this.button3.Size = new System.Drawing.Size(118, 23);
143 this.button3.TabIndex = 4;
144 this.button3.Text = "Exec 2";
145 this.button3.UseVisualStyleBackColor = true;
146 this.button3.Click += new System.EventHandler(this.button3_Click);
148 // Form1
150 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
151 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
152 this.ClientSize = new System.Drawing.Size(796, 626);
153 this.Controls.Add(this.button3);
154 this.Controls.Add(this.button2);
155 this.Controls.Add(this.button1);
156 this.Controls.Add(this.output);
157 this.Controls.Add(this.tabControl1);
158 this.Name = "Form1";
159 this.Text = "Form1";
160 this.tabControl1.ResumeLayout(false);
161 this.tabPage1.ResumeLayout(false);
162 this.tabPage1.PerformLayout();
163 this.tabPage2.ResumeLayout(false);
164 this.tabPage2.PerformLayout();
165 this.ResumeLayout(false);
166 this.PerformLayout();
170 #endregion
172 private System.Windows.Forms.TabControl tabControl1;
173 private System.Windows.Forms.TabPage tabPage1;
174 private System.Windows.Forms.TextBox functions;
175 private System.Windows.Forms.TabPage tabPage2;
176 private System.Windows.Forms.TextBox script;
177 private System.Windows.Forms.TextBox output;
178 private System.Windows.Forms.Button button1;
179 private System.Windows.Forms.Button button2;
180 private System.Windows.Forms.Button button3;