I guess I never looked careful enough at the code I added before. Can someone help elaborate on the signature of this function? It is from .net 3.5 code, there is no default parameter support. But this this
behaves just like default parameter. The function works just like GetFocusedControl(Form parentForm=this)
.
public static Control GetFocusedControl( this Form parent_form)
{
...
}