私は移植可能なXamarinフォームプロジェクトを使用しています。タイプのオブジェクトがターゲットタイプ 'Xamarin.Forms.ContentView'と一致しません
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Project1.Views.WebView1">
<ContentView.Content>
</ContentView.Content>
</ContentPage>
xaml.cs::私はデバッグするとき、私は私のページ
XAMLをこのエラーが出る
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace Proje1.Views
{
public partial class WebView1 : ContentPage
{
public WebView1()
{
InitializeComponent();
Label header = new Label
{
Text = "WebView",
FontSize = 20,
FontAttributes = FontAttributes.Bold,
HorizontalOptions = LayoutOptions.Center
};
WebView wView = new WebView
{
Source = new UrlWebViewSource
{
Url = "https://www.acikakademi.com",
},
VerticalOptions = LayoutOptions.FillAndExpand
};
this.Content = new StackLayout
{
Children =
{
header,
wView
}
};
}
}
}
私はこの問題を解決するにはどうすればよいですか?
しかし、私がContentViewから継承すると、私はApp.cs.にエラーが発生します。 App.csでどのように初期ページを設定する必要がありますか? –
あなたはどんなエラーになりますか?どのようにページを表示しようとしていますか? –
こんにちは私はここにそれを尋ねましたhttp://stackoverflow.com/questions/39724234/cannot-implicily-convert-type-to-xamarin-forms-page –