2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

wire up donate and github links

This commit is contained in:
Xjph 2024-01-21 14:11:07 -03:30
parent b8f5f6a73e
commit 59da2f783b
2 changed files with 23 additions and 5 deletions

View File

@ -557,6 +557,7 @@
GithubLink.TabIndex = 6; GithubLink.TabIndex = 6;
GithubLink.TabStop = true; GithubLink.TabStop = true;
GithubLink.Text = "github"; GithubLink.Text = "github";
GithubLink.LinkClicked += GithubLink_LinkClicked;
// //
// DonateLink // DonateLink
// //
@ -568,6 +569,7 @@
DonateLink.TabIndex = 7; DonateLink.TabIndex = 7;
DonateLink.TabStop = true; DonateLink.TabStop = true;
DonateLink.Text = "Donate"; DonateLink.Text = "Donate";
DonateLink.LinkClicked += DonateLink_LinkClicked;
// //
// CoreForm // CoreForm
// //

View File

@ -2,6 +2,7 @@
using Observatory.Framework.Interfaces; using Observatory.Framework.Interfaces;
using Observatory.PluginManagement; using Observatory.PluginManagement;
using Observatory.Utils; using Observatory.Utils;
using System.Diagnostics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Windows.Forms; using System.Windows.Forms;
@ -296,5 +297,20 @@ namespace Observatory.UI
nativePopup.InvokeNativeNotification(args); nativePopup.InvokeNativeNotification(args);
} }
private void GithubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
OpenURL("https://github.com/Xjph/ObservatoryCore");
}
private void DonateLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
OpenURL("https://www.paypal.com/paypalme/eliteobservatory");
}
private void OpenURL(string url)
{
Process.Start(new ProcessStartInfo(url) { UseShellExecute = true });
}
} }
} }