Skip to content

Commit 0f36c78

Browse files
committed
Remove old menu screenshots
1 parent d280646 commit 0f36c78

8 files changed

+5
-19
lines changed

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

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.workload:
1616
---
1717
# Tutorial: Create a simple application with C\#
1818

19-
By completing this walkthrough, you'll become familiar with many of the tools, dialog boxes, and designers that you can use when you develop applications with Visual Studio. You'll create a "Hello, World" application, design the UI, add code, and debug errors, while you learn about working in the integrated development environment ([IDE](visual-studio-ide.md)).
19+
By completing this tutorial, you'll become familiar with many of the tools, dialog boxes, and designers that you can use when you develop applications with Visual Studio. You'll create a "Hello, World" application, design the UI, add code, and debug errors, while you learn about working in the integrated development environment ([IDE](visual-studio-ide.md)).
2020

2121
::: moniker range="vs-2017"
2222
If you haven't already installed Visual Studio, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2017) page to install it for free.
@@ -230,7 +230,7 @@ In this step, you'll find the error that we caused earlier by changing the name
230230

231231
2. Stop the debugger by choosing **Debug** > **Stop Debugging**.
232232

233-
We renamed *MainWindow.xaml* to *Greetings.xaml* at the start of this walkthrough, but the code still refers to *MainWindow.xaml* as the startup URI for the application, so the project can't start.
233+
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.
234234

235235
#### Specify Greetings.xaml as the startup URI
236236

@@ -250,8 +250,6 @@ You can test the code during debugging by adding some breakpoints. You can add b
250250

251251
2. Add a breakpoint from the menu by selecting **Debug**, then **Toggle Breakpoint**.
252252

253-
![Toggle Breakpoint command on the Debug menu](../media/exploreide-togglebreakpoint.png)
254-
255253
A red circle appears next to the line of code in the far left margin of the editor window.
256254

257255
3. Select the following line: `MessageBox.Show("Goodbye.")`.
@@ -260,7 +258,7 @@ You can test the code during debugging by adding some breakpoints. You can add b
260258

261259
5. In the **Greetings** window, choose the **Hello** radio button, and then choose the **Display** button.
262260

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, Command, Immediate, and Output windows are docked together on the right side.
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.
264262

265263
6. On the menu bar, choose **Debug** > **Step Out**.
266264

@@ -284,16 +282,10 @@ Now that you've verified that everything works, you can prepare a release build
284282

285283
1. On the main menu, select **Build** > **Clean solution** to delete intermediate files and output files that were created during previous builds. This is not necessary, but it cleans up the debug build outputs.
286284

287-
![The Clean Solution command on the Build menu](../media/exploreide-cleansolution.png)
288-
289285
2. Change the build configuration for HelloWPFApp from **Debug** to **Release** by using the dropdown control on the toolbar (it says "Debug" currently).
290286

291-
![The Standard toolbar with Release selected](../media/exploreide-releaseversion.png)
292-
293287
3. Build the solution by choosing **Build** > **Build Solution**.
294288

295-
![Build Solution command on the Build menu](../media/exploreide-buildsolution.png)
296-
297289
Congratulations on completing this tutorial! You can find the *.exe* you built under your solution and project directory (*...\HelloWPFApp\HelloWPFApp\bin\Release*).
298290

299291
## See also
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.workload:
1616
---
1717
# Tutorial: Create a simple application with Visual Basic
1818

19-
By completing this walkthrough, you'll become familiar with many of the tools, dialog boxes, and designers that you can use when you develop applications with Visual Studio. You'll create a "Hello, World" application, design the UI, add code, and debug errors, while you learn about working in the integrated development environment ([IDE](visual-studio-ide.md)).
19+
By completing this tutorial, you'll become familiar with many of the tools, dialog boxes, and designers that you can use when you develop applications with Visual Studio. You'll create a "Hello, World" application, design the UI, add code, and debug errors, while you learn about working in the integrated development environment ([IDE](visual-studio-ide.md)).
2020

2121
::: moniker range="vs-2017"
2222
If you haven't already installed Visual Studio, go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2017) page to install it for free.
@@ -226,7 +226,7 @@ In this step, you'll find the error that we caused earlier by changing the name
226226

227227
2. Stop the debugger by choosing **Debug** > **Stop Debugging**.
228228

229-
We renamed *MainWindow.xaml* to *Greetings.xaml* at the start of this walkthrough, but the code still refers to *MainWindow.xaml* as the startup URI for the application, so the project can't start.
229+
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.
230230

231231
#### Specify Greetings.xaml as the startup URI
232232

@@ -278,16 +278,10 @@ Now that you've verified that everything works, you can prepare a release build
278278

279279
1. On the main menu, select **Build** > **Clean solution** to delete intermediate files and output files that were created during previous builds. This is not necessary, but it cleans up the debug build outputs.
280280

281-
![The Clean Solution command on the Build menu](../media/exploreide-cleansolution.png)
282-
283281
2. Change the build configuration for HelloWPFApp from **Debug** to **Release** by using the dropdown control on the toolbar (it says "Debug" currently).
284282

285-
![The Standard toolbar with Release selected](../media/exploreide-releaseversion.png)
286-
287283
3. Build the solution by choosing **Build** > **Build Solution**.
288284

289-
![Build Solution command on the Build menu](../media/exploreide-buildsolution.png)
290-
291285
Congratulations on completing this tutorial! You can find the *.exe* you built under your solution and project directory (*...\HelloWPFApp\HelloWPFApp\bin\Release*).
292286

293287
## See also

0 commit comments

Comments
 (0)