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:
parent
97e981bae2
commit
97da4c71d2
2
ObservatoryCore/UI/CoreForm.Designer.cs
generated
2
ObservatoryCore/UI/CoreForm.Designer.cs
generated
@ -557,6 +557,7 @@
|
||||
GithubLink.TabIndex = 6;
|
||||
GithubLink.TabStop = true;
|
||||
GithubLink.Text = "github";
|
||||
GithubLink.LinkClicked += GithubLink_LinkClicked;
|
||||
//
|
||||
// DonateLink
|
||||
//
|
||||
@ -568,6 +569,7 @@
|
||||
DonateLink.TabIndex = 7;
|
||||
DonateLink.TabStop = true;
|
||||
DonateLink.Text = "Donate";
|
||||
DonateLink.LinkClicked += DonateLink_LinkClicked;
|
||||
//
|
||||
// CoreForm
|
||||
//
|
||||
|
@ -2,6 +2,7 @@
|
||||
using Observatory.Framework.Interfaces;
|
||||
using Observatory.PluginManagement;
|
||||
using Observatory.Utils;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
@ -223,7 +224,7 @@ namespace Observatory.UI
|
||||
var readAllDialogue = new ReadAllForm();
|
||||
ThemeManager.GetInstance.RegisterControl(readAllDialogue);
|
||||
readAllDialogue.StartPosition = FormStartPosition.Manual;
|
||||
readAllDialogue.Location = Point.Add(Location, new Size(100,100));
|
||||
readAllDialogue.Location = Point.Add(Location, new Size(100, 100));
|
||||
readAllDialogue.ShowDialog();
|
||||
}
|
||||
|
||||
@ -296,5 +297,20 @@ namespace Observatory.UI
|
||||
|
||||
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 });
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user