PortProxyGUI/PortProxyGUI - FW/About.cs

23 lines
444 B
C#
Raw Normal View History

2020-05-29 03:32:44 +08:00
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace PortProxyGUI
{
public partial class About : Form
{
public About()
{
InitializeComponent();
}
private void linkLabel1_Click(object sender, EventArgs e)
{
if (sender is LinkLabel _sender)
{
Process.Start("explorer", _sender.Text);
}
}
}
}