I am not sure if I am understanding what you are trying to accomplish but can you not just do this;
this.OnDeactivate += Form1_MouseClick;
void Form1_MouseClick(object sender, MouseEventArgs e) {
// Do your common code here
}
this.OnDeactivate += Form1_MouseClick;
void Form1_MouseClick(object sender, MouseEventArgs e) {
// Do your common code here
}