예제 #1
0
 public CallPage()
 {
     InitializeComponent();
     cpvm = new CallPageViewModel()
     {
         Navigation = this.Navigation
     };
     this.BindingContext = cpvm;
 }
예제 #2
0
        public CallPage()
        {
            InitializeComponent();

            var    urlSource = new UrlWebViewSource();
            string baseUrl   = DependencyService.Get <IWebViewService>().GetContent();

            urlSource.Url      = baseUrl;
            CallWebView.Source = urlSource;
            callPageViewModel  = BindingContext as CallPageViewModel;
        }
예제 #3
0
 public CallPage()
 {
     this.InitializeComponent();
     ViewModel = new CallPageViewModel();
 }