<TextBlock x:Name="NumberOfRecordsTextBlock" Text="Records ({0} out of {1} Selected)" VerticalAlignment="Center" Margin="3,0,0,0"/>
Yes, this feature is only available with Expression Blend, you can install trial version if you want to.
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-the-look-and-feel-of-ArcGIS-controls.aspx. 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);
�?�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 ?
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.