Skip to content

Commit

Permalink
1.0.0.32
Browse files Browse the repository at this point in the history
  • Loading branch information
x-nas committed May 23, 2024
1 parent 1748822 commit 78fd07b
Show file tree
Hide file tree
Showing 23 changed files with 4,662 additions and 696 deletions.
125 changes: 125 additions & 0 deletions ProcessInjector/AboutFrom.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions ProcessInjector/AboutFrom.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
using ProcessInjector.Lib;
using System;
using System.Windows.Forms;
using WPELibrary.Lib;

namespace ProcessInjector
{
partial class AboutFrom : Form
{
public AboutFrom()
{
InitializeComponent();

this.InitFrom();
}

#region//初始化关于信息

private void InitFrom()
{
this.Text = MultiLanguage.GetDefaultLanguage(MultiLanguage.MutiLan_3);

this.labelProductName.Text = MultiLanguage.GetDefaultLanguage(MultiLanguage.MutiLan_23);

this.labelVersion.Text = String.Format("版本 {0}", Process_Injector.AssemblyVersion);

this.labelCopyright.Text = Process_Injector.AssemblyCopyright;

this.labelCompanyName.Text = Process_Injector.AssemblyCompany;

this.rtbDescription.Text = "";

//Github
this.rtbDescription.Text += "GitHub: ";
this.rtbDescription.Text += "https://github.com/x-nas/WinPacketsEdit" + "\r\n";

//安装文件下载
this.rtbDescription.Text += MultiLanguage.GetDefaultLanguage(MultiLanguage.MutiLan_24);
this.rtbDescription.Text += "https://www.x-nas.com/wpe/publish.htm" + "\r\n";

//使用说明
this.rtbDescription.Text += MultiLanguage.GetDefaultLanguage(MultiLanguage.MutiLan_25);
this.rtbDescription.Text += "https://www.52pojie.cn/thread-1446781-1-1.html" + "\r\n";

//联系作者
this.rtbDescription.Text += MultiLanguage.GetDefaultLanguage(MultiLanguage.MutiLan_26);
this.rtbDescription.Text += "MailTo:263659@qq.com" + "\r\n";
}

#endregion

#region//打开超链接

private void rtbDescription_LinkClicked(object sender, LinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(e.LinkText);
}

#endregion
}
}
Loading

0 comments on commit 78fd07b

Please sign in to comment.