Çözülmüştür..

Gerekli Kod:

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = !char.IsLetter(e.KeyChar) && !char.IsControl(e.KeyChar) && !char.IsSeparator(e.KeyChar);
if (!char.IsControl(e.KeyChar) && !char.IsLetter(e.KeyChar))
{
if ((int)e.KeyChar == 32) { e.Handled = false; }
else
{
e.Handled = true;
MessageBox.Show("Sadece harf girebilirsiniz...", "Uyarı");
}
}


}