private Keys SetShortCut(Label l)
        {
            KeyCatcher kc = new KeyCatcher();

            if (kc.ShowDialog() == DialogResult.OK)
            {
                l.Text = kc.getShortCut().ToString();
            }

            return(kc.getShortCut());
        }
        private Keys SetShortCut(Label l)
        {
            KeyCatcher kc = new KeyCatcher();
            if (kc.ShowDialog() == DialogResult.OK)
            {
                l.Text = kc.getShortCut().ToString();
            }

            return kc.getShortCut();
        }