FormAuthorAdvertisement.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace HslCommunication.BasicFramework
  10. {
  11. /// <summary>
  12. /// 显示作者一些信息的类,应当在软件系统中提供一处链接显示原作者信息,或者以彩蛋方式实现
  13. /// </summary>
  14. public partial class FormAuthorAdvertisement : Form
  15. {
  16. /// <summary>
  17. /// 实例化一个窗口,显示作者的相关信息
  18. /// </summary>
  19. public FormAuthorAdvertisement()
  20. {
  21. InitializeComponent();
  22. }
  23. private void FormAuthorAdvertisement_Load(object sender, EventArgs e)
  24. {
  25. label4.Text = "本框架基础主要提供了应用程序可能会包含了常用的类,账户类,授权类,消息类,版本类," +
  26. "日志类,还有常用的窗口,包含了C#大量的委托的使用,减去新建系统开发重复的基础工作,提升效率。" +
  27. "本框架也包含了一套完整的网络通信解决方案,具有非常高的灵活性来为您的系统提供稳定的信息传递," +
  28. "而且用于通信的数据全部经过DES加密,公钥私钥仅内部可见,保证了安全性。";
  29. label7.Text = "左边为我个人的公众号,本人提供软件定制服务,主要包含中小型的软件系统和个人使用的文件处理工具,"+
  30. "具体案例可以参照公众号展示说明。";
  31. toolStripStatusLabel2.Text = SoftBasic.FrameworkVersion.ToString();
  32. }
  33. private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  34. {
  35. System.Diagnostics.Process.Start("explorer.exe", "http://www.cnblogs.com/dathlin/");
  36. }
  37. }
  38. }