我创建了一个名为PINControl的自定义视图,该视图继承自StackLayout。我在我的XAML中使用了这样的视图:
<local:PINControl x:Name="PIN" HorizontalOptions="CenterAndExpand"/>
在代码背后,我有一个构造函数:
public PINControl () { ... }
当页面执行System.MissingMethodException方法时,我会得到一个LoadFromXaml。消息是Default constructor not found for type MyN
我有两页:第1.xaml和第2.xaml页。我在page1.xaml上创建了一个按钮;在它的click事件上,我导航到page2.xaml。当我运行应用程序时,它会失败,调试器会将我放到App.xaml.cs中。下面是我的代码:
private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
if (Debugger.IsAttached)
{
// A navigation has failed; break into