<navigation:Page x:Class="ABIRSMIGRATION.Views.SellerStatic"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
d:DesignWidth="695" d:DesignHeight="400"
Title="SellerStatic Page" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">
<Grid x:Name="LayoutRoot" Height="500">
<Grid.Resources>
<DataTemplate x:Key="MyTemplate">
<Grid>
<TextBlock Height="23" HorizontalAlignment="Left" Margin="1,37,0,0" Name="txtBlock" Text="Seller Identifier :" VerticalAlignment="Top" Width="100" />
<!--<telerik:DataFormDataField Grid.RowSpan="2" Height="50" HorizontalAlignment="Left" Margin="55,12,0,0" Name="dftSellerIdentifier" DataMemberBinding="{Binding seller_id, Mode=TwoWay}" VerticalAlignment="Top" Width="197" />-->
<TextBox Height="23" HorizontalAlignment="Left" Margin="118,37,0,0" Name="txtSellerIdentifier" VerticalAlignment="Top" Width="85" Grid.RowSpan="2" Text="{Binding seller_id, Mode=TwoWay}" />
</Grid>
</DataTemplate>
</Grid.Resources>
<telerik:RadDataForm x:Name="radSellerDataForm"
AutoGenerateFields="False"
ReadOnlyTemplate="{StaticResource MyTemplate}"
NewItemTemplate="{StaticResource MyTemplate}" EditTemplate="{StaticResource MyTemplate}" AutoEdit="True" CommandButtonsVisibility="Navigation" Margin="4,49,15,1">
</telerik:RadDataForm>
<telerik:RadButton Content="INSERT" Height="Auto" HorizontalAlignment="Left" Margin="120,10,0,0" Name="btnInsert" VerticalAlignment="Top" Width="75" FontWeight="Bold" Click="btnInsert_Click" />
<telerik:RadButton Content="DELETE" Height="Auto" HorizontalAlignment="Left" Margin="220,10,0,0" Name="btnDelete" VerticalAlignment="Top" Width="75" FontWeight="Bold" />
<telerik:RadButton Content="UPDATE" Height="Auto" HorizontalAlignment="Left" Margin="320,10,0,0" Name="btnUpdate" VerticalAlignment="Top" Width="75" FontWeight="Bold" Click="btnUpdate_Click" />
<!--<telerik:RadButton Content=">>" Height="Auto" HorizontalAlignment="Left" Margin="129,92,0,0" Name="btnNext" VerticalAlignment="Top" Width="55" />
<telerik:RadButton Content="<<" Height="Auto" HorizontalAlignment="Left" Margin="40,92,0,0" Name="btnPrev" VerticalAlignment="Top" Width="55" />-->
<telerik:RadButton Content="EXIT" Height="Auto" HorizontalAlignment="Left" Margin="420,10,0,0" Name="btnExit" VerticalAlignment="Top" Width="75" FontWeight="Bold" />
</Grid>
</navigation:Page>
reference :http://www.telerik.com/help/silverlight/raddataform-customized-fields.html