Esempio n. 1
0
        public static void UnsubscribeFromRockEnlargedEvent(RockeEnlargedEventHandler handler)
        {
            if (DisplayController == null)
            {
                FindDisplayController();
            }

            if (DisplayController != null)
            {
                DisplayController.UnsubscribeFromRockEnlargedEvent(handler);
            }
        }
Esempio n. 2
0
 public void UnsubscribeFromRockEnlargedEvent(RockeEnlargedEventHandler handler)
 {
     RockEnlargedEvent -= handler;
 }
Esempio n. 3
0
 public void SubscribeRockEnlargedEvent(RockeEnlargedEventHandler handler)
 {
     RockEnlargedEvent += handler;
 }