This repository has been archived on 2025-12-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SamaPager/SamaPager_Server/AboutForm.cs

38 lines
956 B
C#

using SamaPager_Server.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SamaPager_Server
{
public partial class AboutForm : Krypton.Toolkit.KryptonForm
{
public AboutForm()
{
InitializeComponent();
}
private void storkUrl_LinkClicked(object sender, EventArgs e)
{
Process.Start("https://andrestork.moe");
}
private void gitLnk_LinkClicked(object sender, EventArgs e)
{
Process.Start("https://git.fiorencis.eu/AndreStork/SamaPager");
}
private void AboutForm_Load(object sender, EventArgs e)
{
versionLbl.Text = $"v.{Resources.currentVersion} ({Resources.versionCodename})";
}
}
}