Exemplo n.º 1
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            NavigationController.SetNavigationBarHidden(false, false);

            this.SetTranslation();
            this.bindings = new List <Binding>()
            {
            };

            LinkHomePageCognitiveServices.UserInteractionEnabled = true;
            LinkHomePageCognitiveServices.AddGestureRecognizer(new UITapGestureRecognizer(() =>
            {
                this.ViewModel.GotoCognitiveServicesUrlCommand.Execute(null);
            }));
            LinkPrivacyPolicy.UserInteractionEnabled = true;
            LinkPrivacyPolicy.AddGestureRecognizer(new UITapGestureRecognizer(() =>
            {
                this.ViewModel.GotoMicrosoftPrivacyPoliciesUrlCommand.Execute(null);
            }));
        }
 public void ClickPrivacyPolicy()
 {
     LinkPrivacyPolicy.Click();
 }