www.pudn.com > WebGisMapx.rar > Client.cs


using System; 
using System.Drawing; 
using System.Collections; 
using System.ComponentModel; 
using System.Windows.Forms; 
using System.Data; 
using System.Runtime.Remoting.Channels; 
using System.Runtime.Remoting.Channels.Tcp; 
using System.IO; 
 
 
namespace WebGis 
{ 
 
	public class Client : System.Windows.Forms.Form 
	{ 
		private System.Windows.Forms.Button button1; 
		private System.Windows.Forms.PictureBox pictureBox1; 
		private System.Windows.Forms.TextBox textBox1; 
 
		private System.ComponentModel.Container components = null; 
 
		public Client() 
		{ 
			 
			InitializeComponent(); 
 
		} 
 
 
		protected override void Dispose( bool disposing ) 
		{ 
			if( disposing ) 
			{ 
				if (components != null)  
				{ 
					components.Dispose(); 
				} 
			} 
			base.Dispose( disposing ); 
		} 
 
 
		private void InitializeComponent() 
		{ 
			this.button1 = new System.Windows.Forms.Button(); 
			this.pictureBox1 = new System.Windows.Forms.PictureBox(); 
			this.textBox1 = new System.Windows.Forms.TextBox(); 
			this.SuspendLayout(); 
			//  
			// button1 
			//  
			this.button1.Location = new System.Drawing.Point(368, 240); 
			this.button1.Name = "button1"; 
			this.button1.TabIndex = 0; 
			this.button1.Text = "button1"; 
			this.button1.Click += new System.EventHandler(this.button1_Click); 
			//  
			// pictureBox1 
			//  
			this.pictureBox1.Location = new System.Drawing.Point(40, 16); 
			this.pictureBox1.Name = "pictureBox1"; 
			this.pictureBox1.Size = new System.Drawing.Size(248, 224); 
			this.pictureBox1.TabIndex = 1; 
			this.pictureBox1.TabStop = false; 
			//  
			// textBox1 
			//  
			this.textBox1.Location = new System.Drawing.Point(320, 72); 
			this.textBox1.Name = "textBox1"; 
			this.textBox1.TabIndex = 2; 
			this.textBox1.Text = "textBox1"; 
			//  
			// Client 
			//  
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); 
			this.ClientSize = new System.Drawing.Size(480, 277); 
			this.Controls.Add(this.textBox1); 
			this.Controls.Add(this.pictureBox1); 
			this.Controls.Add(this.button1); 
			this.Name = "Client"; 
			this.Text = "Client"; 
			this.ResumeLayout(false); 
 
		} 
	 
		[STAThread] 
		static void Main()  
		{ 
			Application.Run(new Client()); 
		} 
 
		private void button1_Click(object sender, System.EventArgs e) 
		{ 
			 
		} 
	} 
}