我试图在xamarin表单中创建一个主页详细信息。简单的逻辑,用户将单击导航页面中的按钮,然后它将发送一些参数到详细信息页面,根据该参数,我将绑定来自其余服务的列表视图,但我无法将params发送到详细信息页面,我正在使用此方法但仍然出现错误
private void Button_OnClicked(object sender, EventArgs e)
{
var item = (Xamarin.Forms.Button)sender;
Navigation.PushAsync(new PageDetay(item.CommandParameter.ToString()));
}
我的母版页就像这样
<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="paux.Pages.PageMaster" xmlns:local="clr-namespace:paux;assembly=paux">
<MasterDetailPage.Master>
<ContentPage Title="My page">
<StackLayout Orientation="Vertical">
<ListView x:Name="lstViewMaster" RowHeight="36" >
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<Button Text = "{Binding ad}" CommandParameter="{Binding no}" Clicked="Button_OnClicked"/>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ContentPage>
</MasterDetailPage.Master>
<MasterDetailPage.Detail>
<local:Pages.PageDetay/>
</MasterDetailPage.Detail>
</MasterDetailPage>
我的详细信息页面就像这样
public PageDetay(string id)
{
InitializeComponent();
}
感谢任何帮助。 错误正是
namespace paux.Pages {
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
public partial class PageMaster : global::Xamarin.Forms.MasterDetailPage {
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private global::Xamarin.Forms.ListView lstViewMaster;
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Forms.Build.Tasks.XamlG", "0.0.0.0")]
private void InitializeComponent() {
this.LoadFromXaml(typeof(PageMaster)); // this is source of the error
lstViewMaster = this.FindByName<global::Xamarin.Forms.ListView>("lstViewMaster");
}
}
} 一些xamarin用户抱怨此错误并写了https://forums.xamarin.com/discussion/25938/missingmethod-exception-default-constructor-not-found 我在ios中禁用链接器,但仍然相同,没有任何变化。
答案 0 :(得分:0)
我的问题与标题有关,我在Xaml MasterPage中错过了标题。在你的lstViewMaster.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"
...
Title="Your title">