Esempio n. 1
0
 private void AutomodeButton_Click(object sender, EventArgs e)
 {
     if (ShortcutCreator.CreateMasterShortcut())
     {
         MessageBox.Show("Master shortcut created!",
                         "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
Esempio n. 2
0
        private static bool CreateMasterShortcut()
        {
            if (ShortcutCreator.CreateMasterShortcut())
            {
                MessageBox.Show("Master shortcut created!",
                                "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return(true);
            }

            return(false);
        }