我尝试为自己重新创建Xamarin.Forms libvlcsharp Sample。
在Android和iOS上,它工作正常,但是当我尝试使用Xamarin.Forms WPF实现时,它甚至都不会再加载ContentPage。
我从ContentPage中删除VideoView并用Label或类似的东西替换它。
在这种情况下有效:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AwsomeSample"
xmlns:shared="clr-namespace:LibVLCSharp.Forms.Shared;assembly=LibVLCSharp.Forms"
x:Class="AwsomeSample.MainPage">
<!--<shared:VideoView x:Name="videoView" HorizontalOptions="Center" VerticalOptions="Center"/>-->
<Label Text="Bool11"/>
</ContentPage>
这里不是:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AwsomeSample"
xmlns:shared="clr-namespace:LibVLCSharp.Forms.Shared;assembly=LibVLCSharp.Forms"
x:Class="AwsomeSample.MainPage">
<shared:VideoView x:Name="videoView" HorizontalOptions="Center" VerticalOptions="Center"/>
<!--<Label Text="Bool11"/>-->
</ContentPage>
希望我的英语还不错。 ^^
答案 0 :(得分:0)