在跨平台xamarin中链接url布局

时间:2016-06-08 12:39:09

标签: c# layout xamarin

我需要在跨平台Xamarin的应用程序中显示emailfacebooka site等网址。

我有这段代码,但在文字中显示:

layout.Children.Add(new Label() { Text = "Email:", HorizontalTextAlignment = TextAlignment.Center });
        layout.Children.Add(new Label() { Text = loader.Contacts.Email, HorizontalTextAlignment = TextAlignment.Center });

        layout.Children.Add(new Label() { Text = "FaceBook:", HorizontalTextAlignment = TextAlignment.Center });
        layout.Children.Add(new Label() { Text = loader.Contacts.Facebook, HorizontalTextAlignment = TextAlignment.Center });

我怎么能成功?

由于

0 个答案:

没有答案