Ejemplo n.º 1
0
 public void AddEventListener(String type, DomEventHandler callback = null, Boolean capture = false)
 {
     _host.AddEventListener(type, callback, capture);
 }
Ejemplo n.º 2
0
 public static void AddUnload(this IElement element, DomEventHandler handler) =>
 element.AddEventListener("unload", handler);
Ejemplo n.º 3
0
 public static void AddContextMenu(this IElement element, DomEventHandler handler) =>
 element.AddEventListener("contextmenu", handler);
Ejemplo n.º 4
0
 public static void AddFocusOut(this IElement element, DomEventHandler handler) =>
 element.AddEventListener("focusout", handler);