mirror of
https://github.com/4sval/FModel.git
synced 2026-03-21 17:24:26 -05:00
25 lines
708 B
C#
25 lines
708 B
C#
using System.Windows.Forms;
|
|
|
|
namespace FModel.Forms
|
|
{
|
|
public partial class About : Form
|
|
{
|
|
public About()
|
|
{
|
|
InitializeComponent();
|
|
|
|
label2.Text += @" " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString().Substring(0, 5);
|
|
}
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("https://github.com/iAmAsval/FModel");
|
|
}
|
|
|
|
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("https://paypal.me/AsvalD3SK1NG");
|
|
}
|
|
}
|
|
}
|