Example #1
0
 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);
     }
 }
Example #2
0
        private void PicHelp_Click(object sender, EventArgs e)
        {
            const string passwordSharingLink = "https://kryptor.co.uk/Password%20Sharing.html";

            VisitLink.OpenLink(passwordSharingLink);
        }
Example #3
0
        private void TsmiDonate_Click(object sender, EventArgs e)
        {
            const string donateLink = "https://kryptor.co.uk/Donate.html";

            VisitLink.OpenLink(donateLink);
        }
Example #4
0
        private void TsmiSourceCode_Click(object sender, EventArgs e)
        {
            const string sourceCodeLink = "https://github.com/Kryptor-Software/Kryptor";

            VisitLink.OpenLink(sourceCodeLink);
        }