�?�I only have one column. So, it's possible to force sorting, by code, after binding the control ?
�?�Can i force it to active by code 'Auto Zoom to Selected'?
�?�How can i translate the english texts to any language ?
I think you can use Linq to sort the query results by a given field/attribute before adding them to your GraphicsLayer.
You can customize the look and feel of your FeatureDataGrid to update the language on the template. Here's how: http://blogs.esri.com/Dev/blogs/silverlightwpf/archive/2010/05/20/Use-control-templates-to-customize....
You can also set IsChecked="True" for AutoChangeMapExtentCheckBox.
FeatureSet featureSet = args.FeatureSet; var enumGraphics = from g in featureSet orderby (g.Attributes["NOMBRE"] as string) ascending select g; foreach (ESRI.ArcGIS.Client.Graphic g in enumGraphics) graphicsLayer.Graphics.Add(g);
Yes, this feature is only available with Expression Blend, you can install trial version if you want to.
<TextBlock x:Name="NumberOfRecordsTextBlock" Text="Records ({0} out of {1} Selected)" VerticalAlignment="Center" Margin="3,0,0,0"/>