using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication7
{
public partial class Form1 : Form
{
public int i = 0;
public Form1()
{
InitializeComponent();
this.KeyPreview = true;
}

private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(i+" Key'e basılıyor!","Basılan Key sayısı:");
}

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
i++;
}

private void Form1_KeyUp(object sender, KeyEventArgs e)
{
i--;
}

}
}


Key press değilde keydown ve keyup kullanmanız daha mantıklı gibi duruyor.
keypreview i aktif etmeyi unutmayın.