This is a migrated thread and some comments may be shown as answers.

Blend Crash always on show page

3 Answers 116 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Ludovic Alcala
Top achievements
Rank 1
Ludovic Alcala asked on 25 Feb 2010, 10:43 AM
Hello,
i use the 2009.3.1314 version, and i have a crash (catastrophic failure and exit) when i put the content of the second radpane (right), did i made a mistake ?

Thank you :).

<Grid Background="White"
        <telerikDocking:RadDocking HasDocumentHost="False"
            <telerikDocking:RadSplitContainer Orientation="Vertical" Margin="0"
                <telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="200, 300" SelectedIndex="1" DropDownDisplayMode="Visible" Margin="0"
                    <telerikDocking:RadPane Header="Catégories" Margin="0" CanDockInDocumentHost="False" CanFloat="False" CanUserClose="False" CanUserPin="False" IsPinned="True"
                        <telerik:RadWrapPanel 
                                    x:Name="imageContainer" IsAnimated="true" 
                                    Orientation="Vertical" HorizontalAlignment="Stretch" Margin="0"
                            <StackPanel Background="#FF828282" Orientation="Horizontal"
                                <TextBlock x:Name="TxtCatalogueName" Margin="0,0,-247.99997253418,0" Text="NOMCatalogue" TextWrapping="Wrap" Foreground="White" FontWeight="Bold" FontSize="14.667" TextAlignment="Center" Width="250"/> 
                            </StackPanel> 
                            <TextBlock Text="Chargement des catégories en cours" x:Name="Chargement" /> 
                            <telerikNavigation:RadTreeView x:Name="TreeView" 
                                        IsDragPreviewEnabled="True" 
                                        IsDragTooltipEnabled="true" 
                                        IsDropPreviewLineEnabled="false"  
                                        IsDragDropEnabled="True"  
                                        IsTextSearchEnabled="true" Language="fr"  
                                        ItemTemplate="{StaticResource CategoryTemplate}" 
                                                           Selected="TreeView_Selected" 
                                        SelectionMode="Multiple" TextDropIn="Déposer dans " Margin="0" Width="250" IsEditable="True" Height="400"
 
                                <telerikNavigation:RadTreeView.ItemEditTemplate> 
                                    <DataTemplate> 
                                        <StackPanel Orientation="Horizontal"
                                            <TextBox Text="{Binding DisplayName, Mode=TwoWay, NotifyOnValidationError=true, ValidatesOnExceptions=true}" /> 
                                        </StackPanel> 
                                    </DataTemplate> 
                                </telerikNavigation:RadTreeView.ItemEditTemplate> 
                            </telerikNavigation:RadTreeView> 
                        </telerik:RadWrapPanel> 
                    </telerikDocking:RadPane> 
                </telerikDocking:RadPaneGroup> 
            </telerikDocking:RadSplitContainer> 
            <telerikDocking:RadSplitContainer InitialPosition="DockedRight" Visibility="Visible"
                <telerikDocking:RadPaneGroup Visibility="Visible"
                    <telerikDocking:RadPane Header="Informations catégories" Margin="0" CanDockInDocumentHost="False" CanFloat="False" CanUserClose="False" CanUserPin="False" IsPinned="True"
                        <Grid> 
                        <Grid.RowDefinitions> 
                        <RowDefinition Height="200" /> 
                        <RowDefinition Height="*" /> 
                        </Grid.RowDefinitions> 
                        <Grid.ColumnDefinitions> 
                            <ColumnDefinition /> 
                        </Grid.ColumnDefinitions> 
                            <TextBlock x:Name="Categorie" Grid.Row="0" Grid.Column="0" Margin="0" VerticalAlignment="Top" FontSize="26.667" Foreground="#FFFF1010" Text="Libellé catégorie" /> 
                            <telerikNavigation:RadTabControl Grid.Row="1" Grid.Column="0" SelectedIndex="1" ScrollMode="Pixel" IsTextSearchEnabled="False" ReorderTabRows="False" Margin="0,40,0,0"
                                <telerikNavigation:RadTabItem x:Name="TabSousCat" Margin="0" Header="Sous catégories" d:IsLocked="True"
                                    <StackPanel Height="100" HorizontalAlignment="Left" Width="100" d:IsLocked="True"/> 
                                </telerikNavigation:RadTabItem> 
                                <telerikNavigation:RadTabItem x:Name="TabProduits" Header="Produits"
                                    <Grid> 
                                        <Grid.ColumnDefinitions> 
                                            <ColumnDefinition></ColumnDefinition
                                        </Grid.ColumnDefinitions> 
                                        <Grid.RowDefinitions> 
                                            <RowDefinition Height="*"></RowDefinition> 
                                            <RowDefinition Height="50"></RowDefinition> 
                                        </Grid.RowDefinitions> 
                                        <telerikGridView:RadGridView Grid.Row="0"  Grid.Column="0" x:Name="ListingProductGridView" CanUserSelect="True"  AutoGenerateColumns="True" CanUserDeleteRows="False" CanUserFreezeColumns="False" CanUserInsertRows="False" CanUserReorderColumns="False" CanUserResizeColumns="False" MultipleSelect="True" ShowGroupPanel="False" Margin="0" ScrollMode="RealTime" RowIndicatorVisibility="Collapsed" EnableColumnVirtualization="False"/> 
                                        <data:DataPager  Grid.Row="1"  Grid.Column="0" Source="{Binding ItemsSource, ElementName=ListingProductGridView}" DisplayMode="FirstLastPreviousNextNumeric" VerticalAlignment="Bottom"/> 
                                    </Grid> 
                                </telerikNavigation:RadTabItem> 
                                <telerikNavigation:RadTabItem x:Name="TabLiaisons" Header="Liaisons" d:IsLocked="True"/> 
                            </telerikNavigation:RadTabControl> 
                        </Grid> 
                    </telerikDocking:RadPane> 
                </telerikDocking:RadPaneGroup> 
            </telerikDocking:RadSplitContainer> 
        </telerikDocking:RadDocking> 
    </Grid>

3 Answers, 1 is accepted

Sort by
0
Ludovic Alcala
Top achievements
Rank 1
answered on 25 Feb 2010, 01:22 PM
And when i remove these lines, open blend and paste, it's ok.
But if i save, and i reload blend, it crash too...
Any idea ?
0
Miroslav
Telerik team
answered on 02 Mar 2010, 03:33 PM
Hi Ludovic,

Thank you very much for reporting this issue.

We managed to reproduce, track down and fix the problem.

I have attached a project with the updated assemblies where the above xaml should not result in design-time crashes.

Your Telerik Points have been updated for your feedback

Regards,

Miroslav
the Telerik team

 


Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Ludovic Alcala
Top achievements
Rank 1
answered on 03 Mar 2010, 04:23 PM
thank you :).
Tags
General Discussions
Asked by
Ludovic Alcala
Top achievements
Rank 1
Answers by
Ludovic Alcala
Top achievements
Rank 1
Miroslav
Telerik team
Share this question
or