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

27 lines
930 B
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<<<<<<< HEAD
namespace AudioWallpaper {
=======
using System;
using System.Windows.Forms;
namespace AudioVisualizer {
>>>>>>> 5cb18e9cc33bf9825472ca3181da76afddd9de36
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");
}
}
}