-
Notifications
You must be signed in to change notification settings - Fork 7
/
Form2.cs
38 lines (33 loc) · 1.02 KB
/
Form2.cs
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
29
30
31
32
33
34
35
36
37
38
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace XeniaUpdater_C
{
public partial class Form2 : Form
{
//KEEP \N AT THE END. GITHUB RETURNS TEXT FILES WITH THIS FOR SOME REASON
//UPDATE CHECK WILL NOT WORK IF REMOVED.
public string buildDate = "Build date: 10/03/2023 1820 GMT\n";
public Form2()
{
InitializeComponent();
label3.Text = buildDate;
}
private void label1_Click(object sender, EventArgs e)
{
Process.Start("https://xenia.jp");
}
private void label7_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/xenia-project");
}
private void label8_Click(object sender, EventArgs e)
{
Process.Start("https://discord.com/invite/Q9mxZf9");
}
private void label4_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/Chopper1337/XeniaUpdater");
}
}
}