<Style x:Key="TextBox" TargetType="{x:Type my:BaseNumericBox}">
<Setter Property="SnapsToDevicePixels"
Value="True" />
<Setter Property="OverridesDefaultStyle"
Value="True" />
<Setter Property="KeyboardNavigation.TabNavigation"
Value="none" />
<Setter Property="FocusVisualStyle"
Value="{x:Null}" />
<Setter Property="MinWidth"
Value="120" />
<Setter Property="MinHeight"
Value="20" />
<Setter Property="AllowDrop"
Value="true" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type my:BaseNumericBox}">
<Grid>
<Border Name="Border"
CornerRadius="2"
Padding="2"
BorderThickness="1">
<Border.Background>
<SolidColorBrush Color="{DynamicResource TextBoxControlLightColor}" />
</Border.Background>
<Border.BorderBrush>
<SolidColorBrush Color="{DynamicResource TextBoxBorderMediumColor}" />
</Border.BorderBrush>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Disabled">
<Storyboard>
<ColorAnimationUsingKeyFrames Storyboard.TargetName="Border"
Storyboard.TargetProperty="(Panel.Background).
(SolidColorBrush.Color)">
<EasingColorKeyFrame KeyTime="0"
Value="{DynamicResource TextBoxDisabledControlLightColor}" />
</ColorAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState x:Name="Normal">
<Storyboard>
<ColorAnimationUsingKeyFrames Storyboard.TargetName="Border"
Storyboard.TargetProperty="(Panel.Background).
(SolidColorBrush.Color)">
<EasingColorKeyFrame KeyTime="0"
Value="{DynamicResource TextBoxControlLightColor}" />
</ColorAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState x:Name="ReadOnly">
<Storyboard>
<ColorAnimationUsingKeyFrames Storyboard.TargetName="Border"
Storyboard.TargetProperty="(Panel.Background).
(SolidColorBrush.Color)">
<EasingColorKeyFrame KeyTime="0"
Value="{DynamicResource TextBoxDisabledControlDarkColor}" />
</ColorAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState x:Name="MouseOver" />
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<ScrollViewer Margin="0"
x:Name="PART_ContentHost" />
</Border>
</Grid>
<ControlTemplate.Triggers>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsFocused" Value="False"></Condition>
<Condition Property="Text" Value=""></Condition>
</MultiTrigger.Conditions>
<MultiTrigger.Setters>
</MultiTrigger.Setters>
</MultiTrigger>
<Trigger Property="IsFocused" Value="True">
<!--<Setter Property="BorderThickness" TargetName="BorderBase" Value="2.4,2.4,1,1"></Setter>-->
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="DimGray" />
<!--<Setter Property="FontStyle" Value="Italic" />-->
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

private void Button_Click(object sender, RoutedEventArgs e){    int i = this.radGridView.Records.IndexOf(this.radGridView.SelectedRecord);    int nextCurrentIndex = i + 1;    if (nextCurrentIndex < this.radGridView.Records.Count)    {        Record nextCurrentRecord = this.radGridView.Records[nextCurrentIndex];        nextCurrentRecord.IsSelected = true;    }}
<telerik:RadChart Visibility="{Binding visibilidadGraficaBarras, Converter={StaticResource boolToVis}}" x:Name="radChart2"Width="400" Height="440" ItemsSource="{Binding ListaRespuestas}" >                                     <telerik:ChartArea><telerik:ChartArea.AxisY><telerik:AxisY  MinValue="30" MaxValue="90" Step="10"></telerik:AxisY></telerik:ChartArea.AxisY></telerik:ChartArea>                                     <telerik:RadChart.PaletteBrushes><SolidColorBrush Color="ForestGreen"></SolidColorBrush></telerik:RadChart.PaletteBrushes><telerik:RadChart.SeriesMappings><telerik:SeriesMapping LegendLabel="Perfil de puntuaciones T"  ><telerik:SeriesMapping.SeriesDefinition   ><telerik:BarSeriesDefinition></telerik:BarSeriesDefinition></telerik:SeriesMapping.SeriesDefinition><telerik:SeriesMapping.ItemMappings><telerik:ItemMapping FieldName="Valor"  DataPointMember="YValue"/><telerik:ItemMapping FieldName="Tipo" DataPointMember="XCategory" /></telerik:SeriesMapping.ItemMappings></telerik:SeriesMapping></telerik:RadChart.SeriesMappings></telerik:RadChart>