void ReleaseDesignerOutlets()
        {
            if (TotalCoins != null)
            {
                TotalCoins.Dispose();
                TotalCoins = null;
            }

            if (AmountToConsume != null)
            {
                AmountToConsume.Dispose();
                AmountToConsume = null;
            }

            if (ConsumeButton != null)
            {
                ConsumeButton.Dispose();
                ConsumeButton = null;
            }

            if (SpecialView != null)
            {
                SpecialView.Dispose();
                SpecialView = null;
            }

            if (ViewTouched != null)
            {
                ViewTouched.Dispose();
                ViewTouched = null;
            }
        }
		void ReleaseDesignerOutlets ()
		{
			if (TotalCoins != null) {
				TotalCoins.Dispose ();
				TotalCoins = null;
			}

			if (AmountToConsume != null) {
				AmountToConsume.Dispose ();
				AmountToConsume = null;
			}

			if (ConsumeButton != null) {
				ConsumeButton.Dispose ();
				ConsumeButton = null;
			}

			if (SpecialView != null) {
				SpecialView.Dispose ();
				SpecialView = null;
			}

			if (ViewTouched != null) {
				ViewTouched.Dispose ();
				ViewTouched = null;
			}
		}
Example #3
0
        public static void OnMapDoubleTapped(MonoTouch.UIKit.UITapGestureRecognizer recognizer)
        {
            var handler = MapDoubleTapped;

            if (handler != null)
            {
                handler(recognizer);
            }
        }
Example #4
0
        void ReleaseDesignerOutlets()
        {
            if (AddButton != null)
            {
                AddButton.Dispose();
                AddButton = null;
            }

            if (AddProduct != null)
            {
                AddProduct.Dispose();
                AddProduct = null;
            }

            if (ResetButton != null)
            {
                ResetButton.Dispose();
                ResetButton = null;
            }

            if (ShuffleSwitch != null)
            {
                ShuffleSwitch.Dispose();
                ShuffleSwitch = null;
            }

            if (ViewTouched != null)
            {
                ViewTouched.Dispose();
                ViewTouched = null;
            }

            if (AddLabel != null)
            {
                AddLabel.Dispose();
                AddLabel = null;
            }

            if (AddDescription != null)
            {
                AddDescription.Dispose();
                AddDescription = null;
            }
        }
		void ReleaseDesignerOutlets ()
		{
			if (AddButton != null) {
				AddButton.Dispose ();
				AddButton = null;
			}

			if (AddProduct != null) {
				AddProduct.Dispose ();
				AddProduct = null;
			}

			if (ResetButton != null) {
				ResetButton.Dispose ();
				ResetButton = null;
			}

			if (ShuffleSwitch != null) {
				ShuffleSwitch.Dispose ();
				ShuffleSwitch = null;
			}

			if (ViewTouched != null) {
				ViewTouched.Dispose ();
				ViewTouched = null;
			}

			if (AddLabel != null) {
				AddLabel.Dispose ();
				AddLabel = null;
			}

			if (AddDescription != null) {
				AddDescription.Dispose ();
				AddDescription = null;
			}
		}
 partial void MenuDismissed(MonoTouch.UIKit.UITapGestureRecognizer sender);