Beispiel #1
0
 void IHandleMousePosition.OnPosition(object sender, MouseVectorEventArgs args)
 {
 }
Beispiel #2
0
        void IHandleMouseMotion.OnMotion(object sender, MouseVectorEventArgs args)
        {
            if (args.Handled || _controlLayers.Count == 0) return;

            if (First.IsActive && First.State != ControlState.Idle)
                args.Handled = First.ProcessIntent(ControlIntent.Move, args.Vector);
        }