To get any form control on any form use below method. Create this method as static and use anywhere in your code.
Just need to provide FormRun and control name as parameters
Public Static FormControl getFormControl(FormRun _formRun, str _controlName)
{
FormControl control = _formRun.control(_formRun.controlId(_controlName));
Debug::assert(control != null);
return control;
}