This question is locked. New answers and comments are not allowed.
I have a big project with many RadWindows. Unfortunately radwindows are included in the Xaml (as in the example below). In the version of RadControls 2011_1 all works. 2011_2 version no longer works. You can no longer use radwindows included in the xaml in 2011_1? Thanks
... <Grid x:Name="LayoutRoot" Background="White"> <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="200,119,0,0" Name="Button1" VerticalAlignment="Top" Width="75" /> <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="105,119,0,0" Name="Button1a" VerticalAlignment="Top" Width="75" /> <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="305,119,0,0" Name="Button1b" VerticalAlignment="Top" Width="75" /> <telerikp:RadWindow x:Name="WindowAttività " Header="Attività " Width="720" Height="600" WindowStartupLocation="CenterScreen" Top="50" WindowState="Normal" Visibility="Collapsed" ResizeMode="NoResize" CanMove="True" BorderThickness="1,0,1,1" d:IsHidden="True" > <Canvas> <Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="175,119,0,0" Name="Button2" VerticalAlignment="Top" Width="75" /> </Canvas> </telerikp:RadWindow> </Grid>...