在XAML中使用带有数组元素的资源

时间:2018-04-03 16:34:17

标签: xaml xamarin xamarin.forms

我正在使用Xamarin表单以及将两个内容视图定义为静态资源的内容,以用作Sync Fusion Rotator视图,这里是代码

 <contentViews:BarcodeScanningWindow x:Key="vwScanItem" Text="{Binding ItemName}" Image="{Binding ItemImage}"></contentViews:BarcodeScanningWindow>
 <contentViews:BarcodeScanningWindow x:Key="vwScanLocation" Text="{Binding LocationName}" Image="{Binding LocationImage}"></contentViews:BarcodeScanningWindow>

 <x:Array x:Key="BarcodeWnds" Type="{x:Type xForms:SfRotatorItem}">
      <xForms:SfRotatorItem ItemContent="{StaticResource vwScanItem}"></xForms:SfRotatorItem>
      <xForms:SfRotatorItem ItemContent="{StaticResource vwScanLocation}"></xForms:SfRotatorItem>
 </x:Array>

但是,每次我跑步时都会收到此错误

  位置38:24。找不到关键内容的StaticResource

我这次尝试使用Style类型创建另一个数组但仍然收到相同的错误,所以我猜测问题是使用带有数组元素的静态资源。 有谁知道怎么做?

0 个答案:

没有答案