1

ProcessTabKey()WindowsフォームのキーダウンイベントでC#splitcontainerで機能しないメソッドを使用しようとしています

    public Form1()
    {
        InitializeComponent();
    }
    private void Form1_Load(object sender, EventArgs e)
    {
        this.BringToFront();
        this.Focus();
        this.KeyPreview = true;
    }
    private void Form1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Enter)
        {

                e.Handled = true;
                this.ProcessTabKey(true);
        }

    }
4

2 に答える 2

0

SendKeys.send("{tab}"); を使用します。this.ProcessTabKey(true); の代わりに

于 2015-10-07T13:23:23.963 に答える