예제 #1
0
 public static IWindowEventListener getInstance(OverlayForm parent)
 {
     if (instance == null)
     {
         instance = new WindowEventListener(parent);
     }
     return(instance);
 }
예제 #2
0
파일: Formulario.cs 프로젝트: Duque93/Hook
 private void initOverlay()
 {
     //IComunicator chivato = Comunicator.getInstance(this, true);
     //chivatoHijos.Add(chivato);
     onChildClose += new System.EventHandler(
         (object sender, EventArgs e) => { this.checkBoxOverlay.Checked = false; });
     overlayProcess = new OverlayForm(onChildClose, handlerFounded);
     overlayProcess.init();
 }
예제 #3
0
 private WindowEventListener(OverlayForm parent)
 {
     this.self = parent;
 }