Exemplo n.º 1
0
 private void TryPassThroughMousePrevent <TArg>(IBlockGridLayer layer, Action <object, TArg> handel, TArg e)
 {
     if (_preventMouseLayer == null || _preventMouseLayer == layer)
     {
         handel(this, e);
     }
 }
Exemplo n.º 2
0
 internal void PreventMouseEvent(IBlockGridLayer layer)
 {
     _preventMouseLayer = layer;
 }