This question is locked. New answers and comments are not allowed.
When using a PivotPage in Windows Phone 7 and insert a RadListPicker in the second PivotItem, i get a design error in Blend 4 with null reference exception.
Here is the Code. Any Ideas or is it a bug?
CAN COMPILE THIS CODE BUT GET AN ERROR:
CAN COMPILE THIS CODE WITHOUT ERROR:
Here is the Code. Any Ideas or is it a bug?
CAN COMPILE THIS CODE BUT GET AN ERROR:
<Grid x:Name="LayoutRoot"> <controls:Pivot Title="CATALOG" > <controls:PivotItem x:Name="PivotItemSearch" Header="Search"/> <controls:PivotItem x:Name="PivotItemGroups2" Header="Lines"> <Grid Height="607" Width="456" d:LayoutOverrides="Width, Height" > <telerikInput:RadListPicker x:Name="radListPicker" Margin="0,0,24,0" VerticalAlignment="Top"/> </Grid> </controls:PivotItem> </controls:Pivot> </Grid>CAN COMPILE THIS CODE WITHOUT ERROR:
<Grid x:Name="LayoutRoot"> <controls:Pivot Title="CATALOG" > <controls:PivotItem x:Name="PivotItemSearch" Header="Search"/> <Grid Height="607" Width="456" d:LayoutOverrides="Width, Height" > <telerikInput:RadListPicker x:Name="radListPicker" Margin="0,0,24,0" VerticalAlignment="Top"/> </Grid> <controls:PivotItem x:Name="PivotItemGroups2" Header="Lines"/> </controls:Pivot> </Grid>