<?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 Re:  Which Class replace SystemUI and Controls of ArcObject in the new version of arcGis runtime version 100 in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38289#M411</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Thanks for your answer ,&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Michael Branscomb wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Currently the v100 branch contains a selection of&amp;nbsp;components in beta targeting WPF and UWP. Over the next few months we'll be adding support for Xamarin.Android and Xamarin.iOS where appropriate.&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Can i know which components targeting WPF ? i am working on WPF application , need to display a toolbar using arcGIs runtime version 100.1 &amp;nbsp;so i can control my map? how to do that ?&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Jul 2017 15:45:11 GMT</pubDate>
    <dc:creator>ManelKEDDAR</dc:creator>
    <dc:date>2017-07-18T15:45:11Z</dc:date>
    <item>
      <title>Which Class replace SystemUI and Controls of ArcObject in the new version of arcGis runtime version 100</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38286#M408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello every one ,&lt;/P&gt;&lt;P&gt;I need to display a a toolbar for my map using arcGis runtime version 100.1 , on the ArcObject there &amp;nbsp;using ESRI.ArcGIS.Controls; using ESRI.ArcGIS.SystemUI; name spaces that can be used to display the toolbars for exemple :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;private void SetToolbarPropertiesMapControl() { //Set the properties of AxToolbarControl mapToolbarControl.Orientation = esriToolbarOrientation.esriToolbarOrientationHorizontal; mapToolbarControl.SetBuddyControl(mapControl); mapToolbarControl.AddItem("esriControls.ControlsMapZoomInTool", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); mapToolbarControl.AddItem("esriControls.ControlsMapZoomOutTool", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); mapToolbarControl.AddItem("esriControls.ControlsMapPanTool", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); mapToolbarControl.AddItem("esriControls.ControlsMapFullExtentCommand", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); mapToolbarControl.AddItem("esriControls.ControlsMapZoomToLastExtentBackCommand", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); mapToolbarControl.AddItem("esriControls.ControlsMapZoomToLastExtentForwardCommand", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); mapToolbarControl.AddItem("esriControls.ControlsMapMeasureTool", -1, -1, false, 0, esriCommandStyles.esriCommandStyleIconOnly); }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one have an idea about how to do that ? thanks in advanced&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 13:45:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38286#M408</guid>
      <dc:creator>ManelKEDDAR</dc:creator>
      <dc:date>2017-07-13T13:45:31Z</dc:date>
    </item>
    <item>
      <title>Re:  Which Class replace SystemUI and Controls of ArcObject in the new version of arcGis runtime version 100</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38287#M409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no such equivalent as ArcObjects (specifically the ArcGIS for Desktop part) and ArcGIS Runtime are designed for different purposes.&lt;/P&gt;&lt;P&gt;ArcObjects (or at least the UI - namespaces) is designed to&amp;nbsp;&lt;EM&gt;extend&lt;/EM&gt; the existing ArcMap application or to create a&amp;nbsp;&lt;EM&gt;Windows Desktop&lt;/EM&gt; application.&amp;nbsp;Therefore, ArcObjects based application always have the same look and feel - a menubar and some toolbars to&amp;nbsp;control not only the map, but also the whole application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ArcGIS Runtime in contrast is designed to provide an&amp;nbsp;&lt;EM&gt;SDK&lt;/EM&gt; around the MapView control. The design of the application itself may be very different due to different target devices. You can target Windows Desktop, Windows Store, Android, iOS or even special devices. All those devices have a very different look &amp;amp; feel, so that controls like a toolbar wouldn't really fit.&lt;/P&gt;&lt;P&gt;To be as independent from target applications as possible, the ArcGIS Runtime mainly provides functions / methods that you can integrate into your UI. The "commands" you listed are all there (as methods) - it's up to you to&amp;nbsp;integrate them into your UI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said that, there will be a little exception: The upcoming &lt;A href="https://github.com/Esri/arcgis-toolkit-dotnet"&gt;Toolkit for the ArcGIS Runtime SDK for .NET&lt;/A&gt;&amp;nbsp;will provide some&amp;nbsp;controls around the map to help creating a "Desktop GIS around ArcGIS Runtime".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 07:14:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38287#M409</guid>
      <dc:creator>JensBuchta</dc:creator>
      <dc:date>2017-07-17T07:14:28Z</dc:date>
    </item>
    <item>
      <title>Re:  Which Class replace SystemUI and Controls of ArcObject in the new version of arcGis runtime version 100</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38288#M410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Having said that, there will be a little exception: The upcoming &lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fgithub.com%2FEsri%2Farcgis-toolkit-dotnet" rel="nofollow" target="_blank"&gt;Toolkit for the ArcGIS Runtime SDK for .NET&lt;/A&gt;&amp;nbsp;will provide some&amp;nbsp;controls around the map to help creating a "Desktop GIS around ArcGIS Runtime".&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The toolkit controls/components will be available&amp;nbsp;for both desktop and mobile (Android, iOS, WPF, and UWP). Currently the v100 branch contains a selection of&amp;nbsp;components in beta targeting WPF and UWP. Over the next few months we'll be adding support for Xamarin.Android and Xamarin.iOS where appropriate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 15:05:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38288#M410</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2017-07-18T15:05:34Z</dc:date>
    </item>
    <item>
      <title>Re:  Which Class replace SystemUI and Controls of ArcObject in the new version of arcGis runtime version 100</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38289#M411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Thanks for your answer ,&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Michael Branscomb wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Currently the v100 branch contains a selection of&amp;nbsp;components in beta targeting WPF and UWP. Over the next few months we'll be adding support for Xamarin.Android and Xamarin.iOS where appropriate.&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Can i know which components targeting WPF ? i am working on WPF application , need to display a toolbar using arcGIs runtime version 100.1 &amp;nbsp;so i can control my map? how to do that ?&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 15:45:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38289#M411</guid>
      <dc:creator>ManelKEDDAR</dc:creator>
      <dc:date>2017-07-18T15:45:11Z</dc:date>
    </item>
    <item>
      <title>Re:  Which Class replace SystemUI and Controls of ArcObject in the new version of arcGis runtime version 100</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38290#M412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest researching&amp;nbsp;into WPF and how one creates a toolbar within XAML and the WPF framework. &amp;nbsp;ArcObjects and ArcGIS Runtime are very different development platforms. &amp;nbsp;You cannot really port an application from ArcObjects to ArcGIS Runtime, they are far too different for that thinking. &amp;nbsp;Making a toolbar in WPF/XAML is actually quite easy and a quick search would provide many samples. &amp;nbsp;Once you understand how the toolbar is designed you can than link the event of clicking the toolbar to execute the desired functionality&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 16:57:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/which-class-replace-systemui-and-controls-of/m-p/38290#M412</guid>
      <dc:creator>JoeHershman</dc:creator>
      <dc:date>2017-07-18T16:57:51Z</dc:date>
    </item>
  </channel>
</rss>

