Files
RhythmicWallpaper/AudioVisualizer/VersionInformationForm.cs
2024-10-17 23:10:02 +08:00

20 lines
786 B
C#

namespace AudioWallpaper {
public partial class VersionInformationForm : Form {
public VersionInformationForm() {
InitializeComponent();
}
private void pictureBoxLogo_Click(object sender, EventArgs e) {
System.Diagnostics.Process.Start("explorer.exe", "https://www.itziyuanwang.top/");
}
private void linkLabelURLHome_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
System.Diagnostics.Process.Start("explorer.exe", "https://www.itziyuanwang.top/");
}
private void linkLabelSponsor_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) {
System.Diagnostics.Process.Start("explorer.exe", "https://www.itziyuanwang.top/supportOur.php");
}
}
}