Exemplo n.º 1
0
        public void OnPositionChanged(PositionChangedEvent e)
        {
            ComponentEventHandler <PositionChangedEvent> handler = PositionChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
        public void OnPositionChanged(PositionChangedEvent e)
        {
            var handler = PositionChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }