Inheritance: MonoMac.Foundation.NSObject
Example #1
0
		public static NSObject SetupAction (NSObject target, EventHandler handler)
		{
			ActionDispatcher ctarget = target as ActionDispatcher;
			if (ctarget == null){
				ctarget = new ActionDispatcher ();
				ctarget.Activated += handler;
			}
			return ctarget;
		}
Example #2
0
        public static void RemoveAction(NSObject target, EventHandler handler)
        {
            ActionDispatcher ctarget = target as ActionDispatcher;

            if (ctarget == null)
            {
                return;
            }
            ctarget.Activated -= handler;
        }
Example #3
0
        public static NSObject SetupDoubleAction(NSObject target, EventHandler doubleHandler)
        {
            ActionDispatcher ctarget = target as ActionDispatcher;

            if (ctarget == null)
            {
                ctarget = new ActionDispatcher();
                ctarget.DoubleActivated += doubleHandler;
            }
            return(ctarget);
        }