C# disable textbox focus on form load

前端 未结 1 871
情深已故
情深已故 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)
提交回复
热议问题