or

telerik:RadColorPicker SelectedColor="{Binding SuspectColor}" BorderThickness="0" MainPalette="Concourse" HeaderPalette="Solstice" NoColorText="{Resx RadColorPic_NoColorText}" StandardPaletteHeaderText="{Resx RadColorPic_StandardPaletteHeaderText}" MainPaletteHeaderText="{Resx RadColorPic_MainPaletteHeaderText}" />private string _suspectColor; public string SuspectColor { get { if (_projectConfiguration != null) { _suspectColor = _projectConfiguration.SuspectColor; } return _suspectColor; } set { _suspectColor = value; _project.SavaImageTabConfig("SuspectColor", value.ToString()); base.OnPropertyChanged("SuspectColor"); } }I have a problem with touch scrolling in RadGridView on production machine (analog resistive touchscreen).
On test environment (W8 Simulator) touch scrolling is ok. After installed this same application on production machine - RadGridView starts lag on scrolling.
Touch scrolling in W8 Simulator: http://www.youtube.com/watch?v=56-xueO9MOU
Touch scrolling on production machine: http://www.youtube.com/watch?v=9grjiZq4kQc
<telerik:RadGridView x:Name="ArchivGridView" Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" AutoGenerateColumns="False" CanUserDeleteRows="False" CanUserInsertRows="False" IsReadOnly="True" ItemsSource="{Binding Path=PagedSource, ElementName=Pager}" EnableRowVirtualization="True" PreviewMouseDoubleClick="ArchivGridView_OnPreviewMouseDoubleClick" RowDetailsTemplate="{StaticResource RowDetails}"></telerik:RadGridView><telerik:RadDataPager x:Name="Pager" PageSize="50" Grid.Row="2" AutoEllipsisMode="Both" Source="{Binding Path=MeasuresView}" />Any suggestions?
Everything is ok, when i use mouse for scroll.
RadWindow radWindow = new RadWindow();radWindow.Header = "The header";radWindow.Icon = new Image() { Source = new BitmapImage(new Uri("../ressources/enregistrer.png", UriKind.Relative)) };radWindow.Show();