I have a textbox which I want to disable focus for it How do I disable focus for Textbox with Programming
disable textbox focus using programming c# , I
You can set this.ActiveControl = null; with this is your Form
this.ActiveControl = null;
private void YourForm_Load(object sender, EventArgs e) { this.ActiveControl = null; }