-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.cs
More file actions
28 lines (26 loc) · 921 Bytes
/
Copy pathAbout.cs
File metadata and controls
28 lines (26 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Drawing;
using System.Diagnostics;
using System.Windows.Forms;
using System.Globalization;
using System.Threading;
namespace PA_Video_Encoder
{
public partial class About : Form
{
public About(String titolo, String versione)
{
Thread.CurrentThread.CurrentCulture = new CultureInfo("it-IT", false);
Thread.CurrentThread.CurrentUICulture = new CultureInfo("it-IT", false);
InitializeComponent();
this.Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
l_titolo.Text = titolo;
l_vers.Text = "Versione: " + versione;
this.Text = "Informazioni - " + titolo;
}
private void ll_source_code_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/KonjikiNoYami1991/PAVideoEncoder");
}
}
}