gpt4 book ai didi

Xamarin.Forms - 创建新页面时InitializeComponent不存在

转载 作者:行者123 更新时间:2023-12-03 05:34:40 25 4
gpt4 key购买 nike

我正在使用 Visual Studio 来尝试 Xamarin.Forms。我正在尝试遵循指南: http://developer.xamarin.com/guides/cross-platform/xamarin-forms/xaml-for-xamarin-forms/getting_started_with_xaml/

简而言之,我使用 PCL 创建 Xamarin.Forms 解决方案,然后尝试将 Forms XAML 页面 添加到 PCL 项目。

创建的代码隐藏如下所示:

    public partial class Page1 : ContentPage
{
public Page1()
{
InitializeComponent();
}
}

这里的问题是 InitializeComponent(); 是红色的。当我尝试构建时,我收到通知 名称“InitializeComponent”在当前上下文中不存在

我一直在寻找解决方案,尽管其他人也遇到了同样的麻烦,但他们的解决方案对我不起作用。这是我尝试使用的一个建议: http://blog.falafel.com/xamarin-error-initializecomponent-does-not-exist-in-the-current-context/

如果您有解决此问题的方法,请告诉我。谢谢!

更新:

我的 PCL(我也想在其中添加 XAML 页面)包含:

应用程序.cs:

    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();
}
}

最佳答案

更新:这个错误在VS 2015中一般不会出现,如果出现的话,这是我原来的答案:

找到解决方案了!右键单击 .XAML 文件,选择属性

您将看到一个名为自定义工具的属性。将其值从 MSBuild:Compile 更改为 MSBuild:UpdateDesignTimeXaml

这样就可以解决问题了。不知道否决票,但这是我的屏幕截图:

Screenshot更新:

它很少再次出现。如果是这样,只需打开 Xaml 和代码隐藏文件并保存它们。我知道,这不是最好的解决方案,但它可以完成工作。

关于Xamarin.Forms - 创建新页面时InitializeComponent不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28818525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com