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.

Review the Visual Studio Project template code

Review the Visual Studio Project template code - Visual Basic Tutorial

From the course: Visual Basic Essential Training

Start my 1-month free trial

Review the Visual Studio Project template code

- [Instructor] Let's look at the files that were provided by the templates. To review what we have in SimpleConsole, there's not much here. There's a Module1.vb file, there is an app.config file, there's a set of references, in other words, these are some of the .net libraries that we're going to use or reference in our code. For instance, there is the system and system.core and system.data. In Wpf we add some more items. Here, it's not obvious where the module1.vb file is. There is a sub main somewhere in this project, it's just not obvious where it is. Instead what we have is these .xaml files. That's pronounced xaml, and if I double click on this, you'll see that it has an affiliated designer. Over here. So I can drag and drop controls on this to build my user interface. There has to be code that's affiliated with this xaml file. To find it, click on the triangle. I can see there's an associated file called…

Contents