From the course: Visual Basic Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Use the Code Explorer project

Use the Code Explorer project - Visual Basic Tutorial

From the course: Visual Basic Essential Training

Start my 1-month free trial

Use the Code Explorer project

- [Instructor] I've created a Code Explorer project that I'll use for code demos for the rest the course. It's a WPF application. Let's look at how it works. It's here in this example desktop project. It's a WPR Project so it has xaml files. You want to make it the start-up project. Now let's look at the user interface. For all the demos it'll be similar to this. They'll be buttons across the bottom that are used to invoke the action and to look at the code then they'll be some controls in the upper part of the window for inputting information into the program or for outputting information. In this example I've got a text box here for the output window and I've got three buttons. I'll double click on this first run code button and that takes me over to the code behind. Remember that in a Windows application you have event driven code so the code runs when the event happens so I've got this run code method. It's marked as a…

Contents