每当我向页面添加ComponentOne量表时,都会收到以下异常:
WinRT信息:在类型中找不到属性'PointerLength' 'C1LinearGaugePointer'。
我的Xaml看起来像这样:
<c1:C1SpeedometerGauge x:Name="myGauge"
Height="300"
Value="80"
CoverVisibility="Collapsed">
<c1:C1GaugeRange To="40" Location="0.95" Fill="#088080" Width="0.1" Opacity="0.2" />
<c1:C1GaugeRange From="0" To="80" Location="0.9" Fill="#088080" Width="0.05" Opacity="0.4" />
<c1:C1GaugeRange From="0" To="100" Location="0.88" Fill="#088080" Width="0.025" Opacity="0.6" />
<c1:C1GaugeMark Interval="20" Location="0.95"/>
<c1:C1GaugeMark Interval="10" Location="0.95"/>
<c1:C1GaugeMark Interval="5" Location="0.95"/>
<c1:C1GaugeLabel Interval="20" Alignment="In" AlignmentOffset="10" FontSize="16" />
</c1:C1SpeedometerGauge>
这里有什么不妥?