Each child web forms will have different controls. If you want to access child page controls in your master page, then you can do it something like
ContentPlaceHolder1.FindControl("Button1")
Or do you want to get master page event in your child pages? if so, refer this link .