Hello,
I'm working on implementing the CoverFlow and having some odd behavior in design mode. When in design mode and running the page my custom controls appear where they should but an outline of the CoverflowItem and grid appear in the upper left corner of the design window in design mode. Can I use any controls inside it or just certain types?
Here is the structure of one Item I'm having problems with:
<telerik:RadCoverFlowItem Width="600" Height="450" Background="Gray" >
<StackPanel >
<Grid >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="30"></RowDefinition>
</Grid.RowDefinitions><MyCustomControl Grid.Row="0" Grid.Column="0"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="1"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="2"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="3"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="4"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="5"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="6"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="7"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="8"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="9"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="10"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="11"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="12"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="13"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="14"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="15"></MyCustomControl> </Grid>
</StackPanel>
</telerik:RadCoverFlowItem>
I'm working on implementing the CoverFlow and having some odd behavior in design mode. When in design mode and running the page my custom controls appear where they should but an outline of the CoverflowItem and grid appear in the upper left corner of the design window in design mode. Can I use any controls inside it or just certain types?
Here is the structure of one Item I'm having problems with:
<telerik:RadCoverFlowItem Width="600" Height="450" Background="Gray" >
<StackPanel >
<Grid >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
<ColumnDefinition Width="30"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="30"></RowDefinition>
</Grid.RowDefinitions><MyCustomControl Grid.Row="0" Grid.Column="0"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="1"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="2"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="3"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="4"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="5"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="6"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="7"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="8"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="9"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="10"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="11"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="12"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="13"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="14"></MyCustomControl>
<MyCustomControl Grid.Row="0" Grid.Column="15"></MyCustomControl> </Grid>
</StackPanel>
</telerik:RadCoverFlowItem>