-
Notifications
You must be signed in to change notification settings - Fork 121
Home
Rex Hansen edited this page Mar 17, 2014
·
9 revisions
Once a reference to the ArcGIS Toolkit is made in a project, register the xmlns namespace in the Page
or UserControl
where you want to use a Toolkit control:
Windows Store:
xmlns:esriTK="using:Esri.ArcGISRuntime.Toolkit.Controls"
Windows Phone:
xmlns:esriTK="clr-namespace:Esri.ArcGISRuntime.Toolkit.Controls;assembly:Esri.ArcGISRuntime.Toolkit"
WPF: WPF supports broader namespace registration and you can use the same prefix you use for the .NET Runtime SDK.
xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013"
Note: Some of the following examples assumes an ArcGIS map view control named 'MyMapView' is present.
- Legend - Displays a legend for a set of layers in your map.
- Attribution - Displays copyright/attribution information for layers in your map.
- ScaleLine - Displays current scale reference.
- SignInDialog - (Desktop only) SignIn dialog that challenges the user when accessign ArcGIS secured resources.
- FeatureDataField - Edit control for working with individual feature attributes.
- FeatureDataForm - A simple form layout of all editable fields in a feature using the FeatureDataField for each attribute.