Example #1
0
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            KeyboardHints form = new KeyboardHints();

            string text = "";

            text += "Arrow Keys = standard flying\n";
            text += "A, D = Slide left, right\n";
            text += "W, S = 10x force of up/down arrows\n\n";
            text += "Q = Tractor Beam (repulse)\n";
            text += "E = Tractor Beam (attract)\n";
            text += "Q + E = Tractor Beam (static)\n";
            text += "Double Tap Q and E to lock beam on\n\n";
            text += "1 = Set half power tractor beam\n";
            text += "2 = Set normal power tractor beam\n";
            text += "3 = Set double power tractor beam\n";
            text += "4 = Set infinite power tractor beam\n\n";
            text += "Ctrl = Machine Gun\n";
            text += "Shift = Cannon";

            form.KeyboardText = text;
            form.TopMost      = true;

            form.Show();
        }
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            KeyboardHints form = new KeyboardHints();

            string text = "";
            text += "Arrow Keys = standard flying\n";
            text += "A, D = Slide left, right\n";
            text += "W, S = 10x force of up/down arrows\n\n";
            text += "Q = Tractor Beam (repulse)\n";
            text += "E = Tractor Beam (attract)\n";
            text += "Q + E = Tractor Beam (static)\n";
            text += "Double Tap Q and E to lock beam on\n\n";
            text += "1 = Set half power tractor beam\n";
            text += "2 = Set normal power tractor beam\n";
            text += "3 = Set double power tractor beam\n";
            text += "4 = Set infinite power tractor beam\n\n";
            text += "Ctrl = Machine Gun\n";
            text += "Shift = Cannon";

            form.KeyboardText = text;
            form.TopMost = true;

            form.Show();
        }