about.cs
上传用户:ls4004
上传日期:2007-02-06
资源大小:438k
文件大小:4k
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.Windows.Forms;
- namespace smsForCsharp
- {
- /// <summary>
- /// about 的摘要说明。
- /// </summary>
- public class about : System.Windows.Forms.Form
- {
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label4;
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.Container components = null;
- public about()
- {
- //
- // Windows 窗体设计器支持所必需的
- //
- InitializeComponent();
- //
- // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
- //
- }
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- protected override void Dispose( bool disposing )
- {
- if( disposing )
- {
- if(components != null)
- {
- components.Dispose();
- }
- }
- base.Dispose( disposing );
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.Location = new System.Drawing.Point(16, 64);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(72, 16);
- this.label1.TabIndex = 0;
- this.label1.Text = "版权说明:";
- //
- // label2
- //
- this.label2.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
- this.label2.Location = new System.Drawing.Point(16, 8);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(248, 24);
- this.label2.TabIndex = 1;
- this.label2.Text = "终端短信C#版 -- 天极网";
- //
- // label3
- //
- this.label3.Location = new System.Drawing.Point(128, 48);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(128, 16);
- this.label3.TabIndex = 2;
- this.label3.Text = "版本:V1.0.20031026";
- //
- // label4
- //
- this.label4.Location = new System.Drawing.Point(32, 88);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(208, 168);
- this.label4.TabIndex = 3;
- this.label4.Text = "本程序由蚕蛹(武志文)为天极网开发者频道编写,读者可以任意拷贝,传播,但严禁用于一切商业用途。本程序所有技术文档,请在征得作者本人,及天极网的同意下,方可进行转载" +
- ",严禁用于一切商业用途。程序编制时,并为对程序本身的安全进行很好的测试,作者不对因为使用程序所产生的一切后果负责。为了更好的方便大家,与作者交流,留下EMAIL" +
- "。SILLNET@163.NET";
- //
- // about
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(272, 273);
- this.Controls.AddRange(new System.Windows.Forms.Control[] {
- this.label4,
- this.label3,
- this.label2,
- this.label1});
- this.Name = "about";
- this.ShowInTaskbar = false;
- this.Text = "版权说明";
- this.ResumeLayout(false);
- }
- #endregion
- private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
- {
-
- }
- }
- }