void InitializeComponents()
 {
     lblEdit.Hidden    = LblCover.Hidden = true;
     profileTapGesture = new UITapGestureRecognizer(Opciones)
     {
         Enabled = true
     };
     ProfileView.AddGestureRecognizer(profileTapGesture);
     coverTapGesture = new UITapGestureRecognizer(Opciones)
     {
         Enabled = true
     };
     CoverView.AddGestureRecognizer(coverTapGesture);
 }
Esempio n. 2
0
        // override Finis

        #region Internal Functionality
        void InitializeComponents()
        {
            //Hidding components for edit
            lblEdit.Hidden = LblCover.Hidden = true;

            profileTapGesture = new UITapGestureRecognizer(ShowOptions)
            {
                Enabled = true
            };
            ProfileView.AddGestureRecognizer(profileTapGesture);
            coverTapGesture = new UITapGestureRecognizer(ShowOptions)
            {
                Enabled = true
            };
            CoverView.AddGestureRecognizer(coverTapGesture);
        }
Esempio n. 3
0
        void InitializeComponents()
        {
            LblEdit.Hidden = true;
            LblTap.Hidden  = true;

            editTapGesture = new UITapGestureRecognizer(ShowOptions)
            {
                Enabled = true
            };
            ProfileView.AddGestureRecognizer(editTapGesture);

            tapTapGesture = new UITapGestureRecognizer(ShowOptions)
            {
                Enabled = true
            };
            BottomView.AddGestureRecognizer(tapTapGesture);
        }