We identified several issues with our new Upgrade Wizard shortly after our Q2 2011 release.
The following circumstances are known to cause issues when using the Upgrade Wizard:
All of the above issues have already been addressed and an update has been released through the Visual Studio Online Gallery:
Telerik WPF VSExtensions
You should be able to use the Visual Studio 2010 Extension Manager to download the update.
Best regards,
The Telerik Team
<
telerik:RadGridView
Name
=
"rgv1"
RowIndicatorVisibility
=
"Visible"
Grid.Column
=
"1"
Grid.Row
=
"2"
ItemsSource
=
"{Binding ValidUsers}"
SelectedItem
=
"{Binding SelectedValidUser, Mode=TwoWay}"
IsSynchronizedWithCurrentItem
=
"True"
AutoGenerateColumns
=
"False"
EditTriggers
=
"CellClick"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding userPassword, Mode=TwoWay}"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
An unhandled exception of type 'System.InvalidOperationException' occurred in PresentationFramework.dll
Additional information: Specified element is already the logical child of another element. Disconnect it first.
Here's a snippet of my markup:
<telerik:RadGridView Name="MyGridView" ItemsSource="{Binding Source={x:Static local:MainWindow.MyData}}" AutoGenerateColumns="False">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Item}" UniqueName="Item" TextAlignment="Center">
<telerik:GridViewDataColumn.Header>
<TextBlock Text="Item Name" HorizontalAlignment="Center"></TextBlock>
</telerik:GridViewDataColumn.Header>
</telerik:GridViewDataColumn>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Category}" UniqueName="Category" TextAlignment="Center">
<telerik:GridViewDataColumn.Header>
<TextBlock Text="Item Category" HorizontalAlignment="Center"></TextBlock>
</telerik:GridViewDataColumn.Header>
</telerik:GridViewDataColumn>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Desc}" UniqueName="Desc" TextAlignment="Center">
<telerik:GridViewDataColumn.Header>
<TextBlock Text="Description" HorizontalAlignment="Center"></TextBlock>
</telerik:GridViewDataColumn.Header>
</telerik:GridViewDataColumn>
</telerik:RadGridView.Columns>
<telerik:RadContextMenu.ContextMenu>
<telerik:RadContextMenu Opened="RadContextMenu_Opened">
<telerik:RadContextMenu.ItemTemplate>
<DataTemplate>
<CheckBox IsChecked="{Binding IsVisible}" Content="{Binding Header}" />
</DataTemplate>
</telerik:RadContextMenu.ItemTemplate>
</telerik:RadContextMenu>
</telerik:RadContextMenu.ContextMenu>
</telerik:RadGridView>
I am evaluating trial version 2012_1_326.
Your help is appreciated.
<
EventSetter
Event
=
"MouseDoubleClick"
Handler
=
"ListBoxItem_MouseDoubleClick"
/>
void ListBoxItem_MouseDoubleClick(object sender, RoutedEventArgs e)
{
Frame pageFrame = null;
pageFrame = helper.FindChild<
Frame
>(Application.Current.MainWindow, "MainFrame");
if (pageFrame != null)
{
var content = pageFrame.Content as Page;
var targetPage = content is Trichter1 ? new KontaktDetailAnsicht(myContact) as Page : new Trichter1() as Page;
pageFrame.NavigateToExample(targetPage);
}
}
I have a ribbonview with 2 close buttons.
Only one button is visible at a time using the visible property binding
The problem is that when I use the KeyTip for the close button (CS for both) the first
command always fires even if that button is not visible.
I would think that it should skip over the invisible button and fire the command for the
second button.
Is this a bug/missing functionality or expected behaviour?
<!-- Close SIN (Client Info) --> <telerik:RadRibbonButton CollapseToMedium="Never" Command="{x:Static InfraWorkCommands:WorkCommands.CloseClientInformationCommand}" LargeImage="/SC.NWS.Application;component/Resources/Icons/icn-Close_32.png" Size="Large" telerik:KeyTipService.AccessText="{Binding .[ClientInformationModuleResources.KeyTip_Close], FallbackValue=CS, Mode=OneWay, Source={StaticResource localization}}" Text="{Binding .[ClientInformationModuleResources.Menu_Close_SIN], FallbackValue='Close', Mode=OneWay, Source={StaticResource localization}}" ToolTip="{Binding .[ClientInformationModuleResources.Menu_Close_Client_Info_TT], FallbackValue='Close the current open page', Mode=OneWay, Source={StaticResource localization}}" ToolTipService.ShowOnDisabled="True" Visibility="{Binding IsNotGeneralInquiry, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> <!-- Close General Inquiry --> <telerik:RadRibbonButton CollapseToMedium="Never" Command="{x:Static InfraWorkCommands:WorkCommands.CloseGeneralInquiryCommand}" LargeImage="/SC.NWS.Application;component/Resources/Icons/icn-Close_32.png" Size="Large" telerik:KeyTipService.AccessText="{Binding .[ClientInformationModuleResources.KeyTip_Close], FallbackValue=CS, Mode=OneWay, Source={StaticResource localization}}" Text="{Binding .[ClientInformationModuleResources.Menu_Close], FallbackValue='Close SIN', Mode=OneWay, Source={StaticResource localization}}" ToolTip="{Binding .[ClientInformationModuleResources.Menu_Close_General_Inquiry_TT], FallbackValue='Close the current open page', Mode=OneWay, Source={StaticResource localization}}" ToolTipService.ShowOnDisabled="True" Visibility="{Binding IsNotClientInformation, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />