Files
Notepad_CSharp/Notepad/Notepad v2/Info.cs
T
2021-01-26 08:06:22 +01:00

21 lines
777 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Notatnik
{
public partial class Info : Form
{
public Info() { InitializeComponent(); }
private void Info_Load(object sender, EventArgs e) { label4.Text = Application.ProductVersion; }
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { System.Diagnostics.Process.Start("https://github.com/KrzysiekSiemv"); }
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { System.Diagnostics.Process.Start("https://tipply.pl/u/krzysieksiemv"); }
}
}