The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I am using the WizardControl and have a TextBox that I would like to be selected when the page is selected. I set the tab order and made the control first in tab order but that made no difference. You still have to click to select the control first. Am I supposed to do something different to make this the selected control for the page?
ADAdministrator Syncfusion Team September 27, 2004 04:06 PM UTC
Hi,
Could you please try explicitly setting the focus to the text box in the pageload event handler of the wizard page
private void wizardControlPage2_PageLoad(object sender, System.EventArgs e)
{
this.textBox1.Focus();
}
Thanks,
Stephen.
>I am using the WizardControl and have a TextBox that I would like to be selected when the page is selected. I set the tab order and made the control first in tab order but that made no difference. You still have to click to select the control first. Am I supposed to do something different to make this the selected control for the page?