PageRendererの使用にはいくつか問題があります。XamarinフォームUWP PageRenderer
MainPage.xml
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="abc.CustomView">
<ContentPage.Content>
<StackLayout>
<Button Text="scann" Clicked="BtnScannClicked"></Button>
</StackLayout>
</ContentPage.Content>
MainPage.cs
async void BtnScannClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new CustomView());
}
CustomView.Xaml
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="abc.CustomView">
<ContentPage.Content>
</ContentPage.Content>
</ContentPage>
CustomView.cs
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class CustomView : ContentPage
{
public CustomView()
{
InitializeComponent();
}
}
(私のCustomRendererです)
DemoPage.cs
[assembly: ExportRenderer(typeof(CustomView), typeof(DemoPage))]
namespace abc.UWP
{
class DemoPage: PageRenderer
{
Page page;
Application app;
protected override void OnElementChanged(ElementChangedEventArgs<Xamarin.Forms.Page> e)
{
base.OnElementChanged(e);
if (e.OldElement != null || Element == null)
{
return;
}
try
{
app = Application.Current;
SetupUserInterface();
this.Children.Add(page);
}
catch (Exception ex)
{
Debug.WriteLine(@" ERROR: ", ex.Message);
}
}
void SetupUserInterface()
{
var stackPanel = new StackPanel();
page = new Page();
page.Content = stackPanel;
}
}
}
スロー 例外は常にあります:ビルド中Xamarin.Forms.Platform.UAP.dll エラーの 'System.InvalidOperationExceptionが' を。
しかし、これは実際にPageRendererの問題ではないと思います。これはClickEvent中に表示されます。
ok、問題は、PushModalAsyncではなくNavigation.PushAnsyncの使用でした。これで、ナビゲーション部分が動作するようになりました(DemoPage.csのexportRendererアセンブリなし)。私のアプリケーションは、DemoPage.csへのナビゲーション後、常にクラッシュしています(終了コード-1を持っています)。実装は大丈夫かどうか? – flix