Private Sub imageList2_MouseEnter(ByVal sender As Object, ByVal e As MouseEventArgs) Dim Item As Graphic = TryCast(TryCast(sender, FrameworkElement).DataContext, Graphic) Dim g As Graphic = TryCast(Item, Graphic) g.[Select]() End Sub
For Each item As Graphic In e.RemovedItems Dim g As Graphic = TryCast(item, Graphic) g.UnSelect() Next For Each item As Graphic In e.AddedItems Dim g As Graphic = TryCast(item, Graphic) g.[Select]() Next
If (e.Graphic.Selected) Then e.Graphic.UnSelect() Else e.Graphic.Select() End If
Private Sub imageList2_MouseEnter(ByVal sender As Object, ByVal e As MouseEventArgs) For Each Item As Graphic In ??????? Dim g As Graphic = TryCast(Item, Graphic) g.[Select]() Next End Sub
For Each item As var In e.AddedItems Dim g As Graphic = TryCast(item, Graphic) g.[Select]() Next
<Grid x:Name="resultsPanel" Width="200" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,40,0,10"> <Border Padding="2" Style="{StaticResource darkBorder}"> <StackPanel Orientation="Vertical" > <ListBox x:Name="imageList" Height="200" ScrollViewer.VerticalScrollBarVisibility="Visible" BorderThickness="0" Foreground="White" Background="Transparent" SelectionChanged="imageList2_SelectionChanged"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" VerticalAlignment="Center" > <StackPanel Margin="1"> <TextBlock Foreground="White" Text="{Binding Attributes[TYPE]}" /> </StackPanel> <StackPanel Margin="5,0,0,0" Orientation="Vertical"> <TextBlock Foreground="White" Text="{Binding Attributes[CITY_NAME], StringFormat='City Name: \{0\}'}" > <TextBlock.Effect> <DropShadowEffect/> </TextBlock.Effect> </TextBlock> </StackPanel> </StackPanel> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </StackPanel> </Border> </Grid>
Private Sub ExecuteList_Click(ByVal sender As Object, ByVal e As RoutedEventArgs) '' Query task initialization Dim queryTask As New QueryTask("http://gis.org/arcgis/rest/services/MG_Test_WGS84/MapServer/1") AddHandler queryTask.ExecuteCompleted, AddressOf QueryTask_ExecuteCompletedListBox AddHandler queryTask.Failed, AddressOf QueryTask_FailedSearch Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("*") query.ReturnGeometry = True query.Where = "1=1" query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query) End Sub Private Sub QueryTask_ExecuteCompletedListBox(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.Tasks.QueryEventArgs) ' Set the Target Graphics Layer Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayerListBox"), GraphicsLayer) ' Clear previous results graphicsLayer.ClearGraphics() ' Check for new results Dim featureSet As FeatureSet = args.FeatureSet ' Set the Source of the ListBox to the features returned by the query imageList.ItemsSource = args.FeatureSet.Features If featureSet.Features.Count > 0 Then For Each resultFeature As Graphic In featureSet.Features resultFeature.Symbol = TryCast(LayoutRoot.Resources("StrobeMarkerSymbol"), ESRI.ArcGIS.Client.Symbols.Symbol) graphicsLayer.Graphics.Add(resultFeature) Next Else MessageBox.Show("No features found") End If End Sub
<esri:MarkerSymbol x:Key="StrobeMarkerSymbol"> <esri:MarkerSymbol.ControlTemplate> <ControlTemplate> <Canvas> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="MouseOver"> <Storyboard RepeatBehavior="ForEver"> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleX)" From="1" To="10" Duration="00:00:01" /> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleY)" From="1" To="10" Duration="00:00:01" /> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.Opacity)" From="1" To="0" Duration="00:00:01" /> </Storyboard> </VisualState> <VisualState x:Name="Normal" /> </VisualStateGroup> <VisualStateGroup x:Name="SelectionStates"> <VisualState x:Name="Selected"> <Storyboard RepeatBehavior="ForEver"> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleX)" From="1" To="10" Duration="00:00:01" /> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleY)" From="1" To="10" Duration="00:00:01" /> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.Opacity)" From="1" To="0" Duration="00:00:01" /> </Storyboard> </VisualState> <VisualState x:Name="Unselected" /> </VisualStateGroup> </VisualStateManager.VisualStateGroups> <Ellipse Height="10" Width="10" Canvas.Left="-5" Canvas.Top="-5" RenderTransformOrigin="0.5,0.5" x:Name="ellipse IsHitTestVisible="False"> <Ellipse.RenderTransform> <ScaleTransform /> </Ellipse.RenderTransform> <Ellipse.Fill> <RadialGradientBrush> <GradientStop Color="#00FF0000" /> <GradientStop Color="#FFFF0000" Offset="0.25"/> <GradientStop Color="#00FF0000" Offset="0.5"/> <GradientStop Color="#FFFF0000" Offset="0.75"/> <GradientStop Color="#00FF0000" Offset="1"/> </RadialGradientBrush> </Ellipse.Fill> </Ellipse> <Ellipse Height="10" Width="10" Canvas.Left="-5" Canvas.Top="-5" Fill="#FFFF0000" x:Name="ellipse1"/> </Canvas> </ControlTemplate> </esri:MarkerSymbol.ControlTemplate> </esri:MarkerSymbol>
Private Sub imageList_SelectionChanged(sender As Object, e As SelectionChangedEventArgs) For Each item As var In e.RemovedItems Dim g As Graphic = TryCast(item, Graphic) g.UnSelect() Next For Each item As var In e.AddedItems Dim g As Graphic = TryCast(item, Graphic) g.[Select]() Next End Sub
Private Sub imageList_SelectionChanged(sender As Object, e As SelectionChangedEventArgs) myMap.PanTo(TryCast(imageList.SelectedItem, Photo).Location) End Sub
resultFeature.Symbol = TryCast(LayoutRoot.Resources("StrobeMarkerSymbol"), ESRI.ArcGIS.Client.Symbols.Symbol) graphicsLayer.Graphics.Add(resultFeature)
SNIP <VisualStateGroup x:Name="SelectionStates"> <VisualState x:Name="Selected"> <Storyboard RepeatBehavior="ForEver"> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleX)" From="1" To="10" Duration="00:00:01"/> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleY)" From="1" To="10" Duration="00:00:01" /> <DoubleAnimation BeginTime="0" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.Opacity)" From="1" To="0" Duration="00:00:01" /> </Storyboard> SNIP
Private Sub imageList_SelectionChanged(sender As Object, e As SelectionChangedEventArgs) myMap.PanTo(TryCast(imageList.SelectedItem, Photo).Location) If (e.Graphic.Selected) Then e.Graphic.UnSelect() Else e.Graphic.Select() End If End Sub
<esri:GraphicsLayer ID="MyGraphicsLayerListBox" MouseLeftButtonDown="GraphicsLayer_MouseLeftButtonDown"> <esri:GraphicsLayer.Graphics> <esri:Graphic Symbol="{StaticResource StrobeMarkerSymbol}"> <esri:MapPoint X="-50" Y="-10" /> </esri:Graphic> </esri:GraphicsLayer.Graphics> </esri:GraphicsLayer>
Private Sub GraphicsLayer_MouseLeftButtonDown(ByVal sender As System.Object, ByVal e As ESRI.ArcGIS.Client.GraphicMouseButtonEventArgs) If (e.Graphic.Selected) Then e.Graphic.UnSelect() Else e.Graphic.Select() End If End Sub
<ListBox x:Name="imageList" Height="200" ScrollViewer.VerticalScrollBarVisibility="Visible BorderThickness="0" Foreground="White" Background="Transparent" SelectionChanged="imageList2_SelectionChanged"> SNIP....
Private Sub TextBlock_MouseEnter(sender As Object, e As MouseEventArgs) Dim p As Photo = TryCast(TryCast(sender, FrameworkElement).DataContext, Photo) Dim g As Graphic = getGraphic(p) If g IsNot Nothing Then g.[Select]() 'Activate the selection state 'Pop the graphic on top of other graphics g.SetZIndex(1) End If End Sub Private Sub TextBlock_MouseLeave(sender As Object, e As MouseEventArgs) Dim p As Photo = TryCast(TryCast(sender, FrameworkElement).DataContext, Photo) Dim g As Graphic = getGraphic(p) If g IsNot Nothing Then g.UnSelect() 'Deactivate selection state 'reset the graphic Z index g.SetZIndex(0) End If End Sub
'' '' BINDING TO LIST BOX Dim resultFeaturesBinding As New Binding("LastResult") resultFeaturesBinding.Source = queryTask imageList.SetBinding(ListBox.ItemsSourceProperty, resultFeaturesBinding)
Dim resultFeaturesBinding As New Binding("LastResult") resultFeaturesBinding.Source = queryTask imageList.SetBinding(ListBox.ItemsSourceProperty, resultFeaturesBinding)
imageList.ItemsSource = args.FeatureSet.Features
imageList.Items.Add(resultFeature.Attributes("CITY_NAME").ToString())
<StackPanel Margin="1"> <TextBlock Text="{Binding Feature.Attributes[TYPE], StringFormat='City Name: \{0\}'}" /> </StackPanel> <StackPanel Margin="5,0,0,0" Orientation="Vertical"> <TextBlock Foreground="White" Text="{Binding Feature.Attributes[CITY_NAME], StringFormat='City Name: \{0\}'}" > <TextBlock.Effect> <DropShadowEffect/> </TextBlock.Effect> </TextBlock> <TextBlock Foreground="White" Text="{Binding Feature.Attributes[POP1990], StringFormat='Population: \{0\}'}" > <TextBlock.Effect> <DropShadowEffect/> </TextBlock.Effect> </TextBlock> </StackPanel>
Private Sub ExecuteList_Click(ByVal sender As Object, ByVal e As RoutedEventArgs) '' Query task initialization Dim queryTask As New QueryTask("http://gis.logis.org/arcgis/rest/services/MG_Test_WGS84/MapServer/1") AddHandler queryTask.ExecuteCompleted, AddressOf QueryTask_ExecuteCompletedListBox AddHandler queryTask.Failed, AddressOf QueryTask_FailedSearch '' '' BINDING TO LIST BOX Dim resultFeaturesBinding As New Binding("LastResult") resultFeaturesBinding.Source = queryTask imageList.SetBinding(ListBox.ItemsSourceProperty, resultFeaturesBinding) Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("*") query.ReturnGeometry = True ' Return all features query.Where = "1=1" query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query) End Sub Private Sub QueryTask_ExecuteCompletedListBox(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.Tasks.QueryEventArgs) ' Clear previous results Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayerListBox"), GraphicsLayer) graphicsLayer.ClearGraphics() ' Check for new results Dim featureSet As FeatureSet = args.FeatureSet ' Add Items to listbox imageList.ItemsSource = args.FeatureSet.Features Dim Test As String = featureSet.Features.Count MessageBox.Show(Test) If featureSet.Features.Count > 0 Then ' Add results to map For Each resultFeature As Graphic In featureSet.Features resultFeature.Symbol = TryCast(LayoutRoot.Resources("DefaultMarkerSymbol"), ESRI.ArcGIS.Client.Symbols.Symbol) graphicsLayer.Graphics.Add(resultFeature) Next Else MessageBox.Show("No features found") End If End Sub
imageList.ItemsSource= args.FeatureSet.Features
<TextBlock Text="{Binding Feature.Attributes[CITYNAME], StringFormat=CityName: \{0\}'}" /> <TextBlock Text="{Binding Feature.Attributes[POPULATION], StringFormat=Population: \{0\}'}" />
imageList.Items.Add(resultFeature.Attributes("TYPE").ToString())
<TextBlock Text="{Binding StringFormat='Type: \{0\}'}" />
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" > <StackPanel Margin="1"> <TextBlock Foreground="White" Text="{Binding StringFormat='City Name: \{0\}'}" /> </StackPanel> <StackPanel Margin="5,0,0,0" Orientation="Vertical"> <TextBlock Foreground="White" Text="{Binding StringFormat='City Name: \{0\}'}" /> <TextBlock Foreground="White" Text="{Binding StringFormat='Population: \{0\}'}" /> </StackPanel> </StackPanel>
' POPULATE THE LISTBOX imageList.Items.Add(resultFeature.Attributes("TYPE").ToString()) imageList.Items.Add(resultFeature.Attributes("CITY_NAME").ToString())
imageList.Items.Add(resultFeature.Attributes("PID").ToString())
<TextBlock Foreground="White" Text="{Binding Feature.Attributes[ADDRESS], StringFormat='Address: \{0\}'}" />
Private Sub ExecuteList_Click(ByVal sender As Object, ByVal e As RoutedEventArgs) ' Query task initialization Dim queryTask As New QueryTask("http://gis.logis.org/arcgis/rest/services/MG_Test_WGS84/MapServer/1") AddHandler queryTask.ExecuteCompleted, AddressOf QueryTask_ExecuteCompletedListBox AddHandler queryTask.Failed, AddressOf QueryTask_FailedSearch Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("*") query.ReturnGeometry = True ' Return all features query.Where = "1=1" query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query) End Sub Private Sub QueryTask_ExecuteCompletedListBox(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.Tasks.QueryEventArgs) ' Clear previous results Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayerListBox"), GraphicsLayer) graphicsLayer.ClearGraphics() ' Check for new results Dim featureSet As FeatureSet = args.FeatureSet ' Populate image listbox imageList.DataContext = featureSet.Features ' get feature count Dim Test As String = featureSet.Features.Count MessageBox.Show(Test) If featureSet.Features.Count > 0 Then ' Add results to map For Each resultFeature As Graphic In featureSet.Features resultFeature.Symbol = TryCast(LayoutRoot.Resources("ResultsFillSymbol"), ESRI.ArcGIS.Client.Symbols.Symbol) graphicsLayer.Graphics.Add(resultFeature) Next Else MessageBox.Show("No features found") End If End Sub
// Bind data grid to find results. Bind to the LastResult property which returns a list // of FindResult instances. When LastResult is updated, the ItemsSource property on the // will update. Binding resultFeaturesBinding = new Binding("LastResult"); resultFeaturesBinding.Source = findTask; imageList.SetBinding(ListBox.ItemsSourceProperty, resultFeaturesBinding);
If featureSet.Features.Count > 0 Then ' Add results to map For Each resultFeature As Graphic In featureSet.Features resultFeature.Symbol = ResultsFillSymbol graphicsLayer.Graphics.Add(resultFeature) imageList.Items.Add(resultFeature.Attributes("PID").ToString()) Dim Test2 As String = resultFeature.Attributes("PID").ToString() MessageBox.Show(Test2) Next Else
<Grid x:Name="resultsPanel" Width="200" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,40,0,10"> <Border Padding="2" Style="{StaticResource darkBorder}"> <StackPanel Orientation="Vertical" > <TextBlock x:Name="Status" Text="" Margin="3,0,0,0" Foreground="White" FontWeight="Bold" /> <Grid Background="Transparent" > <Button HorizontalAlignment="Left" Style="{StaticResource darkButtonStyle}" x:Name="previousButton" Content="<<" Margin="3,0,3,0" IsEnabled="False" /> <Button HorizontalAlignment="Right" Style="{StaticResource darkButtonStyle}" x:Name="nextButton" Content=">>" Margin="3,0,3,0" IsEnabled="False" /> </Grid> <ListBox x:Name="imageList" Height="200" ScrollViewer.VerticalScrollBarVisibility="Visible" BorderThickness="0" Foreground="White" Background="Transparent" SelectionChanged="imageList2_SelectionChanged"> <ListBox.ItemTemplate> <DataTemplate> <!-- <TextBlock Text="{Binding Path=Title}" /> --> <!-- <TextBlock Text="{Binding Path=Title}" MouseEnter="TextBlock_MouseEnter" MouseLeave="TextBlock_MouseLeave" /> --> <TextBlock Foreground="White" Text="{Binding Feature.Attributes[ADDRESS], StringFormat='Address: \{0\}'}" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </StackPanel> </Border> </Grid>
Private Sub ExecuteList_Click(ByVal sender As Object, ByVal e As RoutedEventArgs) ' Query task initialization Dim queryTask As New QueryTask("http://gis.org/arcgis/rest/services/MG_Test_WGS84/MapServer/8") AddHandler queryTask.ExecuteCompleted, AddressOf QueryTask_ExecuteCompletedListBox AddHandler queryTask.Failed, AddressOf QueryTask_FailedSearch ' Query task parameters. Return geometry, state, and population density. Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("*") query.Text = FindText.Text query.ReturnGeometry = True query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query) End Sub Private Sub QueryTask_ExecuteCompletedListBox(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.Tasks.QueryEventArgs) ' Clear previous results Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayerSearch2"), GraphicsLayer) graphicsLayer.ClearGraphics() ' Check for new results Dim featureSet As FeatureSet = args.FeatureSet If featureSet.Features.Count > 0 Then ' Add results to map For Each resultFeature As Graphic In featureSet.Features resultFeature.Symbol = ResultsFillSymbol graphicsLayer.Graphics.Add(resultFeature) imageList.Items.Add(resultFeature.Attributes("PID").ToString()) Next Else MessageBox.Show("No features found") End If End Sub
imageList.ItemsSource = result.Photos.Photo;
Private Sub EnterItemsControl(ByVal sender As Object, ByVal e As MouseEventArgs) ' Highlight the graphic feature associated with the selected row Dim ItemControlGrid As ItemsControl = TryCast(sender, ItemsControl) Dim selectedIndex As Integer = ItemsControl.TabIndexProperty If selectedIndex > -1 Then Dim findResult As FindResult = CType(MyItemsControls.SelectedItem, FindResult) Dim graphic As Graphic = findResult.Feature Select Case graphic.Attributes("Shape").ToString() Case "Polygon" graphic.Symbol = TryCast(LayoutRoot.Resources("DefaultFillSymbol"), Symbol) Case "Polyline" graphic.Symbol = TryCast(LayoutRoot.Resources("DefaultLineSymbol"), Symbol) Case "Point" graphic.Symbol = TryCast(LayoutRoot.Resources("DefaultMarkerSymbol"), Symbol) End Select Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayerParcelHighlight"), GraphicsLayer) graphicsLayer.ClearGraphics() graphicsLayer.Graphics.Add(graphic) End If End Sub
<Grid Grid.Column="6" > <StackPanel Orientation="Vertical" Margin="5" HorizontalAlignment="left" VerticalAlignment="top" > <Grid x:Name="IdentifyGrid7" HorizontalAlignment="left" VerticalAlignment="Top" Margin="0,2,0,0" MouseEnter="TurnOnIncidents"> <Rectangle Fill="#CC5C90B2" Stroke="Gray" RadiusX="10" RadiusY="10" Margin="0,0,0,0" > <Rectangle.Effect> <DropShadowEffect/> </Rectangle.Effect> </Rectangle> <TextBlock x:Name="DataDisplayTitleTop7" HorizontalAlignment="Center" Text="Items Control Search PID" Foreground="White" FontSize="10" Margin="0,10,0,0" /> <StackPanel Margin="10,27,0,0" Orientation="Vertical" VerticalAlignment="Top" > <StackPanel Orientation="Horizontal"> <TextBlock x:Name="DataDisplayTitleTop8" HorizontalAlignment="Left" Text="Phone: " Foreground="White" FontSize="10" Margin="0,0,0,0" /> <TextBlock x:Name="DataDisplayTitleTop9" HorizontalAlignment="Left" Text="763.555.5555" Foreground="White" Margin="0,0,0,0" > <TextBlock.Effect> <DropShadowEffect/> </TextBlock.Effect> </TextBlock> </StackPanel> </StackPanel> <StackPanel x:Name="IdentifyResultsPanel7" Height="125" Width="250" Orientation="Vertical" Margin="0,85,0,0" HorizontalAlignment="Center"> <ScrollViewer VerticalScrollBarVisibility="Auto" Width="225" MaxHeight="200" > <ItemsControl x:Name="MyItemsControls" MouseEnter="EnterItemsControl" > <ItemsControl.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" VerticalAlignment="Center" > <StackPanel Margin="1"> <TextBlock Text="{Binding Feature.Attributes[HOUSE_NUMB]}" Foreground="White" FontSize="10" /> </StackPanel> <StackPanel Margin="5,0,0,0" Orientation="Vertical"> <TextBlock Foreground="White" Text="{Binding Feature.Attributes[PID], StringFormat='PID: \{0\}'}" > <TextBlock.Effect> <DropShadowEffect/> </TextBlock.Effect> </TextBlock> <TextBlock Foreground="White" Text="{Binding Feature.Attributes[ADDRESS], StringFormat='Address: \{0\}'}" > <TextBlock.Effect> <DropShadowEffect/> </TextBlock.Effect> </TextBlock> </StackPanel> </StackPanel> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> </ScrollViewer> </StackPanel> </Grid> </StackPanel> </Grid>
Private Sub EnterItemsControl(ByVal sender As Object, ByVal e As MouseEventArgs) ShowTimePanel.Begin() End Sub
<Grid Grid.Row="4"> <esri:FeatureDataGrid x:Name="MyDataGrid" Map="{Binding ElementName=MyMap}" GraphicsLayer="{Binding ElementName=MyMap, Path=Layers.[California]}" /> </Grid>
// Bind data grid to find results. Bind to the LastResult property which returns a list // of FindResult instances. When LastResult is updated, the ItemsSource property on the // will update. Binding resultFeaturesBinding = new Binding("LastResult"); resultFeaturesBinding.Source = findTask; MyItemsControls.SetBinding(ItemsControl.ItemsSourceProperty, resultFeaturesBinding);
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.