From 154dfbc38af464ac8a0bb7a8f83e9b43e933c0e1 Mon Sep 17 00:00:00 2001 From: Gary Sheppard Date: Tue, 2 Jan 2018 09:46:06 -0500 Subject: [PATCH] Disabling lock focus button until 3D is enabled once Fixes #140 --- .../dotNETWPF/Exercise 1 Map and Scene.md | 4 ++-- .../dotNETWPF/Exercise 2 Zoom Buttons.md | 19 ++++++++++++++----- .../Ex2_ZoomButtons/MainWindow.xaml | 2 +- .../Ex2_ZoomButtons/MainWindow.xaml.cs | 3 +++ .../Ex3_LocalFeatureLayer/MainWindow.xaml | 2 +- .../Ex3_LocalFeatureLayer/MainWindow.xaml.cs | 3 +++ .../Ex4_BufferAndQuery/MainWindow.xaml | 2 +- .../Ex4_BufferAndQuery/MainWindow.xaml.cs | 3 +++ .../Ex5_Routing/Ex5_Routing/MainWindow.xaml | 2 +- .../Ex5_Routing/MainWindow.xaml.cs | 3 +++ 10 files changed, 32 insertions(+), 11 deletions(-) diff --git a/runtime-workshop/exercises/dotNETWPF/Exercise 1 Map and Scene.md b/runtime-workshop/exercises/dotNETWPF/Exercise 1 Map and Scene.md index 318b435..2ad7c3a 100644 --- a/runtime-workshop/exercises/dotNETWPF/Exercise 1 Map and Scene.md +++ b/runtime-workshop/exercises/dotNETWPF/Exercise 1 Map and Scene.md @@ -109,7 +109,7 @@ ArcGIS Runtime also supports 3D visualization. Everyone loves 3D! To conclude th private bool threeD = false; ``` -11. In MainWindow.xaml we need to add a click event to the button to toggle to a 3D view. Visual Studio will create the for you when start typeing the Click= and you can tab to have the event handler created automatically. +11. In MainWindow.xaml we need to add a click event to the button to toggle to a 3D view. Visual Studio will create the for you when start typing the Click= and you can tab to have the event handler created automatically. ```