private static void AskToUpdate() { if (MessageBox.Show("An update is available for Kryptor. Would you like to download it now?", "Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes) { const string downloadLink = "https://github.com/Kryptor-Software/Kryptor/releases"; VisitLink.OpenLink(downloadLink); } }
private void PicHelp_Click(object sender, EventArgs e) { const string passwordSharingLink = "https://kryptor.co.uk/Password%20Sharing.html"; VisitLink.OpenLink(passwordSharingLink); }
private void TsmiDonate_Click(object sender, EventArgs e) { const string donateLink = "https://kryptor.co.uk/Donate.html"; VisitLink.OpenLink(donateLink); }
private void TsmiSourceCode_Click(object sender, EventArgs e) { const string sourceCodeLink = "https://github.com/Kryptor-Software/Kryptor"; VisitLink.OpenLink(sourceCodeLink); }