Do you mean, you don't want the user to click on any button on the form? cause if so, the disabled is a good option, antoher option is to hold a flag (acceptEvent) on the form, and on the thread start, set it to false, and on the events handler use:
public void button_Click(object sender, EventArgs)
{
if(acceptEvent)
{
// handle the event.
}
}