我正在努力解决这个问题。我在这里创建了一个简单的跨平台页面是XAML代码:
<?xml version="1.0" encoding="utf-8" ?>
<CarouselPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ForTesting.TestPage">
<Label Text="{Binding MainText}" VerticalOptions="Center" HorizontalOptions="Center" />
<ContentPage>
<ContentPage.Padding>
<OnPlatform x:TypeArguments="Thickness" iOS="0,40,0,0" Android="0,40,0,0" />
</ContentPage.Padding>
</ContentPage>
</CarouselPage>
这是相同的跨平台页面类:
public partial class TestPage: CarouselPage
{
public TestPage()
{
InitializeComponent();
new Label
{
Text = "heelow",
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)),
HorizontalOptions = LayoutOptions.Center
};
}
}
为了测试我创建了简单的标签,但即使没有标签,它也不起作用。
我在MainPage.xaml中调用此页面:
<?xml version="1.0" encoding="UTF-8"?>
<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ForTesting;assembly=ForTesting"
x:Class="ForTesting.MainPage"
MasterBehavior="Popover">
<ContentPage.ToolbarItems>
<ToolbarItem x:Name="CClick"
Text="C :"
Order="Primary">
</ToolbarItem>
</ContentPage.ToolbarItems>
<MasterDetailPage.Master>
<local:MasterPage x:Name="masterPage" />
</MasterDetailPage.Master>
<MasterDetailPage.Detail>
<NavigationPage>
<x:Arguments>
<local:TestPage/>
</x:Arguments>
</NavigationPage>
</MasterDetailPage.Detail>
</MasterDetailPage>
在这一行上:ForTesting.MainPage.xaml.g.cs我在执行程序时遇到错误:
public partial class MainPage : global::Xamarin.Forms.MasterDetailPage {
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::Xamarin.Forms.ToolbarItem CClick;
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::ForTesting.MasterPage masterPage;
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private void InitializeComponent() {
--> this.LoadFromXaml(typeof(MainPage));
}
}
错误:
未处理的异常:System.Reflection.TargetInvocationException: 调用目标引发了异常。
我还有另一个与TestPage.xaml相同的跨平台页面,但是在我执行时它正在工作。
答案 0 :(得分:6)
您的轮播页面中有错误
<?xml version="1.0" encoding="utf-8" ?>
<CarouselPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ForTesting.TestPage">
<Label Text="{Binding MainText}" VerticalOptions="Center" HorizontalOptions="Center" />
<ContentPage>
<ContentPage.Padding>
<OnPlatform x:TypeArguments="Thickness" iOS="0,40,0,0" Android="0,40,0,0" />
</ContentPage.Padding>
</ContentPage>
</CarouselPage>
轮播页面应该只有一个孩子,它应该是一个内容页面,您无法同时添加标签和内容页面。删除此行
<Label Text="{Binding MainText}" VerticalOptions="Center" HorizontalOptions="Center" />
如果您想将标签和内容作为轮播,我建议您使用CarouselView之类的内容。
编辑1
我已经使用最新的Xamarin.Forms(2.2.0.31)创建了sample Carousel project,我已经在iOS和Android上对其进行了测试,但它确实有效。您可以将其用作启动器来实现您的版本。我在生产应用程序中使用此控件。
答案 1 :(得分:5)
一般来说,我注意到XAML中的任何语法错误都可能显示为此异常。
答案 2 :(得分:1)
要以 @Wes answer 为基础,您可以通过告诉 Visual Studio 在任何异常时自动中断来使错误消息更清晰:
Debug
> Windows
> Exception Settings
以打开例外设置窗口System.Exception
的复选框