OK, so I have got the latest NuGet package for the tool kit installed in my app.
Now I want to add it to my xaml. So in the toolkit samples for TableOfContents they have (something like):
<esri:TableOfContents Grid.Row="0" x:Name="toc"
GeoView="{Binding ElementName=MyMapView}" ShowLegend="false" />
But the namespace of esri does not have a TableOfContents so what name space do I need to add to my app and reference in my element?
Solved! Go to Solution.
You need to add the Esri.ArcGISRuntime.Toolkit.Preview Nuget package.
You need to add the Esri.ArcGISRuntime.Toolkit.Preview Nuget package.
Thanks Joe. That was simple.