我尝试在react-native Windows uwp应用程序中查看pdf文件。我从https://blog.pieeatingninjas.be/2016/02/06/displaying-pdf-files-in-a-uwp-app/的本地uwp pdf视图中获得了示例。它的工作正常。我需要在react-native中编写一座桥梁。如何以编程方式以及
<ScrollViewer ZoomMode="Enabled" Background="DarkGray" Grid.Column="1">
<ItemsControl ItemsSource="{Binding PdfPages, ElementName=root}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Image Source="{Binding}" Margin="0 2" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
有人可以帮助我吗?...