about.cs
上传用户:ls4004
上传日期:2007-02-06
资源大小:438k
文件大小:4k
源码类别:

手机短信编程

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace smsForCsharp
  7. {
  8. /// <summary>
  9. /// about 的摘要说明。
  10. /// </summary>
  11. public class about : System.Windows.Forms.Form
  12. {
  13. private System.Windows.Forms.Label label1;
  14. private System.Windows.Forms.Label label2;
  15. private System.Windows.Forms.Label label3;
  16. private System.Windows.Forms.Label label4;
  17. /// <summary>
  18. /// 必需的设计器变量。
  19. /// </summary>
  20. private System.ComponentModel.Container components = null;
  21. public about()
  22. {
  23. //
  24. // Windows 窗体设计器支持所必需的
  25. //
  26. InitializeComponent();
  27. //
  28. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  29. //
  30. }
  31. /// <summary>
  32. /// 清理所有正在使用的资源。
  33. /// </summary>
  34. protected override void Dispose( bool disposing )
  35. {
  36. if( disposing )
  37. {
  38. if(components != null)
  39. {
  40. components.Dispose();
  41. }
  42. }
  43. base.Dispose( disposing );
  44. }
  45. #region Windows Form Designer generated code
  46. /// <summary>
  47. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  48. /// 此方法的内容。
  49. /// </summary>
  50. private void InitializeComponent()
  51. {
  52. this.label1 = new System.Windows.Forms.Label();
  53. this.label2 = new System.Windows.Forms.Label();
  54. this.label3 = new System.Windows.Forms.Label();
  55. this.label4 = new System.Windows.Forms.Label();
  56. this.SuspendLayout();
  57. // 
  58. // label1
  59. // 
  60. this.label1.Location = new System.Drawing.Point(16, 64);
  61. this.label1.Name = "label1";
  62. this.label1.Size = new System.Drawing.Size(72, 16);
  63. this.label1.TabIndex = 0;
  64. this.label1.Text = "版权说明:";
  65. // 
  66. // label2
  67. // 
  68. this.label2.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
  69. this.label2.Location = new System.Drawing.Point(16, 8);
  70. this.label2.Name = "label2";
  71. this.label2.Size = new System.Drawing.Size(248, 24);
  72. this.label2.TabIndex = 1;
  73. this.label2.Text = "终端短信C#版 -- 天极网";
  74. // 
  75. // label3
  76. // 
  77. this.label3.Location = new System.Drawing.Point(128, 48);
  78. this.label3.Name = "label3";
  79. this.label3.Size = new System.Drawing.Size(128, 16);
  80. this.label3.TabIndex = 2;
  81. this.label3.Text = "版本:V1.0.20031026";
  82. // 
  83. // label4
  84. // 
  85. this.label4.Location = new System.Drawing.Point(32, 88);
  86. this.label4.Name = "label4";
  87. this.label4.Size = new System.Drawing.Size(208, 168);
  88. this.label4.TabIndex = 3;
  89. this.label4.Text = "本程序由蚕蛹(武志文)为天极网开发者频道编写,读者可以任意拷贝,传播,但严禁用于一切商业用途。本程序所有技术文档,请在征得作者本人,及天极网的同意下,方可进行转载" +
  90. ",严禁用于一切商业用途。程序编制时,并为对程序本身的安全进行很好的测试,作者不对因为使用程序所产生的一切后果负责。为了更好的方便大家,与作者交流,留下EMAIL" +
  91. "。SILLNET@163.NET";
  92. // 
  93. // about
  94. // 
  95. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  96. this.ClientSize = new System.Drawing.Size(272, 273);
  97. this.Controls.AddRange(new System.Windows.Forms.Control[] {
  98.   this.label4,
  99.   this.label3,
  100.   this.label2,
  101.   this.label1});
  102. this.Name = "about";
  103. this.ShowInTaskbar = false;
  104. this.Text = "版权说明";
  105. this.ResumeLayout(false);
  106. }
  107. #endregion
  108. private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
  109. {
  110. }
  111. }
  112. }