<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic mouse click is not fired after using the editor control for selection in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mouse-click-is-not-fired-after-using-the-editor/m-p/164533#M4061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After user selecting features from the map, if they want to use the identify tool, the QueryPoint_MousClick event is not fired. I used Editor control for the selection with ContinuousMode set to be True. How do I disable the selection when user click on Identify tool? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 May 2011 22:21:27 GMT</pubDate>
    <dc:creator>YingLin</dc:creator>
    <dc:date>2011-05-20T22:21:27Z</dc:date>
    <item>
      <title>mouse click is not fired after using the editor control for selection</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mouse-click-is-not-fired-after-using-the-editor/m-p/164533#M4061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After user selecting features from the map, if they want to use the identify tool, the QueryPoint_MousClick event is not fired. I used Editor control for the selection with ContinuousMode set to be True. How do I disable the selection when user click on Identify tool? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2011 22:21:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mouse-click-is-not-fired-after-using-the-editor/m-p/164533#M4061</guid>
      <dc:creator>YingLin</dc:creator>
      <dc:date>2011-05-20T22:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: mouse click is not fired after using the editor control for selection</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mouse-click-is-not-fired-after-using-the-editor/m-p/164534#M4062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Identify and Editor cannot be active at the same time. Your application need to decide when to turn on one or the other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, if you have a CheckBox that indicates when you want Identify to be active, you can do the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void CheckBox_Checked(object sender, RoutedEventArgs e)
{
 if (LayoutRoot == null) return;
 CheckBox cb = sender as CheckBox;
 Editor editor = this.LayoutRoot.Resources["MyEditor"] as Editor;
 if (editor == null) return;
 if (cb.IsChecked.HasValue)
 {
&amp;nbsp; if (cb.IsChecked.Value)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp; if (editor.CancelActive.CanExecute(null)) //deactivate Editor
&amp;nbsp;&amp;nbsp;&amp;nbsp; editor.CancelActive.Execute(null);
&amp;nbsp; }
&amp;nbsp; if (editor.Select.CanExecute("new")) //activate Editor.Select
&amp;nbsp;&amp;nbsp; editor.Select.Execute("new");
 }
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:36:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/mouse-click-is-not-fired-after-using-the-editor/m-p/164534#M4062</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T08:36:35Z</dc:date>
    </item>
  </channel>
</rss>

