我正在使用 Visual Studio 来尝试 Xamarin: Http://developer.xamarin.com/guides/cross-platform/xamarin-forms/xaml-for-xamarin-forms/getting_started_with_xaml/
简而言之,我创建了一个 Xamarin。使用 PCL 表单解决方案,然后尝试向 PCL 项目添加 Forms XAML Page
。
创建的代码隐藏如下所示:
public partial class Page1 : ContentPage
{
public Page1()
{
InitializeComponent();
}
}
这里的问题是 InitializeComponent();
是红色的。
当我尝试建立我得到通知,The name 'InitializeComponent' does not exist in the current context
我一直在四处寻找解决方案,尽管其他人也遇到了同样的麻烦,但他们的解决方案对我没有用。下面是我试图使用的一个建议: Http://blog.falafel.com/xamarin-error-initializecomponent-does-not-exist-in-the-current-context/
如果你有解决这个问题的办法,请告诉我。谢谢!
更新:
我的 PCL (也是我想添加 XAML 页面的地方)包含:
应用程序:
public class App : Application
{
public App()
{
// The root page of your application
MainPage = new ContentPage
{
Content = new StackLayout
{
VerticalOptions = LayoutOptions.Center,
Children = {
new Label {
XAlign = TextAlignment.Center,
Text = "Welcome to Xamarin Forms!"
}
}
}
};
}
protected override void OnStart()
{
// Handle when your app starts
}
protected override void OnSleep()
{
// Handle when your app sleeps
}
protected override void OnResume()
{
// Handle when your app resumes
}
}
还有我的 XAML 页面:
<?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="XamaTest.MyXamlPage">
<Label Text="{Binding MainText}" VerticalOptions="Center" HorizontalOptions="Center" />
</ContentPage>
暗号:
public partial class MyXamlPage : ContentPage
{
public MyXamlPage()
{
InitializeComponent();
}
}