Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.0k views
in Technique[技术] by (71.8m points)

c# - Sending Hotkeys

I tried to send Hotkey "alt X" with a template I found in c# programming guide but nither message is shown nor HotKey was sent to Jcpicker. I am going to gather aprox. 1000 colors from an image as file of strings for further analising so I am asking community what's wrong in this code:

using System;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {}

        // Clicking Button1 causes a message box to appear.
        void button1_Click(object sender, EventArgs e)
            
            => MessageBox.Show("Click here!");

       
        // Use the SendKeys.Send method to raise the Button1 click event 
        // and display the message box.
        void Form1_DoubleClick(object sender, System.EventArgs e)
            {

                // Send the enter key; since the tab stop of Button1 is 0, this
                // will trigger the click event.
                SendKeys.Send(keys: "%{X}");
            }
        }
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...