Files
netch/Netch/Forms/AboutForm.cs
Connection Refused b2ea730984 done
2019-12-02 19:51:12 +08:00

42 lines
1.1 KiB
C#

using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace Netch.Forms
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
}
private void AboutForm_Load(object sender, EventArgs e)
{
Text = Utils.i18N.Translate("About");
ChannelLabel.Text = Utils.i18N.Translate("Telegram Channel");
SponsorGroupBox.Text = Utils.i18N.Translate("Sponsor");
}
private void AboutForm_FormClosing(object sender, FormClosingEventArgs e)
{
Global.MainForm.Show();
}
private void NetchPictureBox_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/NetchX/Netch");
}
private void ChannelLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://t.me/NetchX");
}
private void SponsorPictureBox_Click(object sender, EventArgs e)
{
Process.Start("https://n3ro.host/register?ref=530");
}
}
}