xmlns:ig="http://schemas.infragistics.com/xaml"
...
<ig:XamGrid x:Name="xamGrid" Margin="20"
ItemsSource="{Binding Source={StaticResource DataToolCars}, Path=CountryCarMakers}">
<ig:XamGrid.PagerSettings>
<ig:PagerSettings AllowPaging="Top" PageSize="8"
</ig:XamGrid.PagerSettings>
<ig:XamGrid.Columns>
<!-- TODO: Row コマンドで Unbound Column オブジェクトを追加します -->
<ig:UnboundColumn Key="Row Commands" HorizontalContentAlignment="Center">
<ig:UnboundColumn.ItemTemplate>
<DataTemplate>
<!-- Row コマンドにマップされたコントロールで StackPanel を追加します -->
<StackPanel Orientation="Horizontal" >
<Button Content="Delete" Width="60" >
<ig:Commanding.Command>
<ig:XamGridRowCommandSource EventName="Click"
CommandType="Delete">
</ig:XamGridRowCommandSource>
</ig:Commanding.Command>
</Button>
<Button Content="Edit" Width="60" >
<ig:Commanding.Command>
<ig:XamGridRowCommandSource EventName="Click"
CommandType="Edit">
</ig:XamGridRowCommandSource>
</ig:Commanding.Command>
</Button>
</StackPanel>
</DataTemplate>
</ig:UnboundColumn.ItemTemplate>
</ig:UnboundColumn>
</ig:XamGrid.Columns>
</ig:XamGrid>