当前位置:  开发笔记 > 编程语言 > 正文

如何通过单击xamarin形式的按钮来打开网页

如何解决《如何通过单击xamarin形式的按钮来打开网页》经验,为你挑选了1个好方法。

我有一个xamarin格式的文件称为HomePage,它从用户那里获取eURL内容。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;

namespace zaposta_angelar
{
    public class HomePage : ContentPage
    {
        Label lTitle;
        Entry eURL;
        Button bButton;

        public HomePage()
        {
            lTitle = new Label
            {
                Text = "WELCOME",
                HorizontalOptions = LayoutOptions.Center,
                FontAttributes = Font.SystemFontOfSize(25, FontAttributes.Bold).FontAttributes,
                 FontSize = Font.SystemFontOfSize(25, FontAttributes.Bold).FontSize,
                //WidthRequest = 200,
                HeightRequest = 100
            };

            eURL = new Entry { Placeholder = "Enter Site URL", };

            bButton = new Button { Text = "ENTER", };
            bButton.Clicked += bButton_Clicked;

            this.Content = new StackLayout
            {
                Children = {
                    lTitle, eURL, bButton
                }
            };
        }

        void bButton_Clicked(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(eURL.Text)) { DisplayAlert("URL", "Your URL is Empty", "OK"); }
            else
            {
                SitePage.LoadRequest(new SitePage(eURL)));
            }
        }
    }
}

并通过单击bButton按钮打开eURL,并将网站加载到另一个名为SitePage的页面中

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;

namespace zaposta_angelar
{
    public class SitePage : NavigationPage
    {
        private Entry eURL;

        public SitePage()
        {

        }

        public SitePage(Entry eURL)
        {
            // TODO: Complete member initialization
            this.eURL = eURL;
        }

        internal static void LoadRequest(SitePage sitePage)
        {
            throw new NotImplementedException();
        }
    }
}

该代码无法正常工作



1> Adam Pedley..:

好吧,我不确定您打算走哪条路,但是您可以通过以下任一方式打开网页

    在内部使用WebView

    使用Device.OpenUri

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有