<Window x:Class="WpfApplication1.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <Grid> <telerik:RadTreeListView> <telerik:RadContextMenu.ContextMenu> <telerik:RadContextMenu x:Name="treeContextMenu" Background="LimeGreen"> <telerik:RadMenuItem Header="Test 1" Background="White"/> <telerik:RadMenuItem Header="Test 2" Background="White"/> <telerik:RadMenuItem IsSeparator="True" Background="White"/> <telerik:RadMenuItem Header="Test 3" Background="White"/> <telerik:RadMenuItem Header="Test 4" Background="White"/> <telerik:RadMenuItem Header="Test 5" Background="White"/> </telerik:RadContextMenu> </telerik:RadContextMenu.ContextMenu> </telerik:RadTreeListView> </Grid></Window>Hello
I am using the RadDocking control to manage our application main layout. I wanted to implement a Save/Load functionality in order to provide a better user experience. To do that I added a SaveLayout and LoadLayout menu Items that uses the RadDocking.SaveLayout and RadDocking.LoadLayout methods (http://www.telerik.com/help/wpf/raddocking-features-save-load-layout.html) . The layout structure is saved and loaded properly, but I noticed that the ‘IsPinned’ property of the panes is not being properly restored. It looks like that property is not being included in the saved layout structure and therefore not being restored.
As an example:
1- Start the application. All Panes are pinned.
2- The user saves the layout.
3- The user unpin a pane
4- The user loads the layout.
5- … the pin remains unpinned….
Is this an expected behaviour? If not, How can I accomplish what I am looking for (5- The pane is restored as pinned)?
Thanks,
<StackPanel> <telerik:RadMaskedNumericInput Name="radMaskedNumericInput1"> <telerik:RadMaskedNumericInput.Style> <Style TargetType="telerik:RadMaskedNumericInput"> <Setter Property="KeyboardNavigation.TabNavigation" Value="Local"/> <Setter Property="Mask" Value="#3.4"></Setter> </Style> </telerik:RadMaskedNumericInput.Style> </telerik:RadMaskedNumericInput> <telerik:RadMaskedNumericInput Name="radMaskedNumericInput2" KeyboardNavigation.TabNavigation="Local" Mask="#6.3"/></StackPanel>
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>