Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Attic / WindsorAndRemoting / Client1 / Form1.Designer.cs
blob7d8eb179662443bdb7cdd75e6a1f0b31e49d5934
1 namespace Client1
3 partial class Form1
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
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)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
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()
31 this.button1 = new System.Windows.Forms.Button();
32 this.button2 = new System.Windows.Forms.Button();
33 this.SuspendLayout();
34 //
35 // button1
36 //
37 this.button1.Location = new System.Drawing.Point(61, 74);
38 this.button1.Name = "button1";
39 this.button1.Size = new System.Drawing.Size(75, 23);
40 this.button1.TabIndex = 0;
41 this.button1.Text = "Connect";
42 this.button1.UseVisualStyleBackColor = true;
43 this.button1.Click += new System.EventHandler(this.button1_Click);
44 //
45 // button2
46 //
47 this.button2.Location = new System.Drawing.Point(109, 122);
48 this.button2.Name = "button2";
49 this.button2.Size = new System.Drawing.Size(75, 23);
50 this.button2.TabIndex = 1;
51 this.button2.Text = "Connect";
52 this.button2.UseVisualStyleBackColor = true;
53 this.button2.Click += new System.EventHandler(this.button2_Click);
54 //
55 // Form1
56 //
57 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
58 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
59 this.ClientSize = new System.Drawing.Size(292, 266);
60 this.Controls.Add(this.button2);
61 this.Controls.Add(this.button1);
62 this.Name = "Form1";
63 this.Text = "Form1";
64 this.ResumeLayout(false);
68 #endregion
70 private System.Windows.Forms.Button button1;
71 private System.Windows.Forms.Button button2;