Exemplo n.º 1
0
 public static void BeginProcessing(this IButtonProcessingHandler handler)
 {
     handler.IsProcessing = true;
 }
Exemplo n.º 2
0
 public static void EndProcessing(this IButtonProcessingHandler handler)
 {
     handler.IsProcessing = false;
 }
Exemplo n.º 3
0
 public static void SetHandler(this IButtonProcessingExternalHandler handler, IButtonProcessingHandler holder)
 {
     handler.Holder = holder;
 }