C# disable textbox focus on form load

前端 未结 1 873
情深已故
情深已故 2021-01-29 10:29

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

相关标签:
1条回答
  • 2021-01-29 11:05

    You can set this.ActiveControl = null; with this is your Form

    private void YourForm_Load(object sender, EventArgs e)  
    { 
        this.ActiveControl = null;       
    }
    
    0 讨论(0)
提交回复
热议问题