email.cs

来自「美国移民局软件,请大家不要用于商业用途!站长为什么还不开通我的帐号呀」· CS 代码 · 共 75 行

CS
75
字号
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace Tracker7UI.dialogs
{
	/// <summary>
	/// Summary description for Email.
	/// </summary>
	public class Email : System.Windows.Forms.Form
	{
		private Tracker7UI.common.UCEmailCompose ucEmailCompose1;
		private System.ComponentModel.IContainer components;

		public Email()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			//
			// TODO: Add any constructor code after InitializeComponent call
			//
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.ucEmailCompose1 = new Tracker7UI.common.UCEmailCompose();
			this.SuspendLayout();
			// 
			// ucEmailCompose1
			// 
			this.ucEmailCompose1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.ucEmailCompose1.Location = new System.Drawing.Point(0, 0);
			this.ucEmailCompose1.Name = "ucEmailCompose1";
			this.ucEmailCompose1.Size = new System.Drawing.Size(592, 473);
			this.ucEmailCompose1.TabIndex = 0;
			// 
			// Email
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(592, 473);
			this.Controls.Add(this.ucEmailCompose1);
			this.Name = "Email";
			this.Text = "Email";
			this.ResumeLayout(false);

		}
		#endregion
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?