Skip to content

Commit 0974f3a

Browse files
committed
add new art for final section
1 parent 0f36c78 commit 0974f3a

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed
Loading

docs/get-started/csharp/tutorial-wpf.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,8 @@ In this step, you'll find the error that we caused earlier by changing the name
228228

229229
A **Break Mode** window appears, and the **Output** window indicates that an IOException has occurred: Cannot locate resource 'mainwindow.xaml'.
230230

231+
![Screenshot of IOException message](media/exploreide-ioexception.png)
232+
231233
2. Stop the debugger by choosing **Debug** > **Stop Debugging**.
232234

233235
We renamed *MainWindow.xaml* to *Greetings.xaml* at the start of this tutorial, but the code still refers to *MainWindow.xaml* as the startup URI for the application, so the project can't start.
@@ -258,7 +260,9 @@ You can test the code during debugging by adding some breakpoints. You can add b
258260

259261
5. In the **Greetings** window, choose the **Hello** radio button, and then choose the **Display** button.
260262

261-
The line `MessageBox.Show("Hello.")` is highlighted in yellow. At the bottom of the IDE, the Autos, Locals, and Watch windows are docked together on the left side, and the Call Stack, Breakpoints, Command, Immediate, and Output windows are docked together on the right side.
263+
The line `MessageBox.Show("Hello.")` is highlighted in yellow. At the bottom of the IDE, the Autos, Locals, and Watch windows are docked together on the left side, and the Call Stack, Breakpoints, Exception Settings, Command, Immediate, and Output windows are docked together on the right side.
264+
265+
![Screenshot of breakpoint in the debugger](media/exploreide-debugbreakpoint.png)
262266

263267
6. On the menu bar, choose **Debug** > **Step Out**.
264268

Loading

docs/get-started/visual-basic/tutorial-wpf.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,8 @@ In this step, you'll find the error that we caused earlier by changing the name
224224

225225
A **Break Mode** window appears, and the **Output** window indicates that an IOException has occurred: Cannot locate resource 'mainwindow.xaml'.
226226

227+
![Screenshot of IOException message](../media/exploreide-ioexception.png)
228+
227229
2. Stop the debugger by choosing **Debug** > **Stop Debugging**.
228230

229231
We renamed *MainWindow.xaml* to *Greetings.xaml* at the start of this tutorial, but the code still refers to *MainWindow.xaml* as the startup URI for the application, so the project can't start.
@@ -254,7 +256,9 @@ You can test the code during debugging by adding some breakpoints. You can add b
254256

255257
5. In the **Greetings** window, choose the **Hello** radio button, and then choose the **Display** button.
256258

257-
The line `MessageBox.Show("Hello.")` is highlighted in yellow. At the bottom of the IDE, the Autos, Locals, and Watch windows are docked together on the left side, and the Call Stack, Breakpoints, Command, Immediate, and Output windows are docked together on the right side.
259+
The line `MessageBox.Show("Hello.")` is highlighted in yellow. At the bottom of the IDE, the Autos, Locals, and Watch windows are docked together on the left side, and the Call Stack, Breakpoints, Exception Settings, Command, Immediate, and Output windows are docked together on the right side.
260+
261+
![Screenshot of breakpoint in the debugger](media/exploreide-debugbreakpoint.png)
258262

259263
6. On the menu bar, choose **Debug** > **Step Out**.
260264

0 commit comments

Comments
 (0)