Visual Studio 2022 installation tutorial (a thousand-word detailed explanation with pictures and text), will guide you step by step to install and run VS2022 and set the background image.

VS2022 latest and most complete installation tutorial

  • I’m glad you opened this blog. Let’s install and use VS2022 together.

1. Official website download

戳这里—>[VS2022下载地址官网下载地址](https://visualstudio.microsoft.com/zh-hans/downloads/),进入之后选择社区版(community,此版本是对个人免费开放的,基础学习使用社区版就可以满足我们的需求)

Insert image description here
then openInsert image description here

2. Installation and startup

After waiting for download and installation for a period of time, enter here to configure our VS2022. Generally, we learn c language first. Therefore, it is enough to check the desktop development using c++ (it is recommended that you find the extended development part of VS in other tools and select it too). I believe everyone is
Insert image description here
full of fear about the c drive, so we will put VS2022 on other drives and everything is done. After that, you can install it (because the blogger has already installed it, so the display may be slightly different, so you don’t need to worry about it). If you
Insert image description here
choose the language pack, generally the default language of VS2022 is Chinese, so we won’t go into more details and just go to the next step.
Insert image description here
At this point, we have perfectly installed VS2022. Next, let’s take a look at how to use it. Let’s rush together!

3. Project testing

1. Create a new project

Insert image description here

2. Select the template we use (C++ empty project) and continue rushing!

Insert image description here

3. Enter the interface shown below, take the project name and storage location, and then the project is successfully created.

Insert image description here
It’s time for the main event. Look at the picture. It’s full of useful information.
Insert image description here
Next is the operation of changing the name and location. If the addition is successful, we see that a source file has been created. Let’s face programming. Try hello and wrold to see what happens. Response, the code is as follows:

#include<stdio.h>

int main()
{
    
    
	printf("hello,wrold\n");
	return 0;
}

Let's take a look at the blogger's running results (just interrupt and press F5 to run).
Insert image description here
Isn't it amazing? At this point, some people will feel that this compiler is not to their liking and they are not in the mood to type code. Don't worry, It’s not over yet, let’s change offices together. There’s no reason to choose one by yourself.

4. Beautify the compiler

1. Simply adjust the theme (font and color)

Insert image description here
You can choose your favorite theme colors, fonts, etc. Bloggers would like to be able to look at beautiful women without typing code. No, VS2022 gives us this opportunity.

2.Adjust the background image

Insert image description here
The changes need to be fully set after closing, so after completion, close VS, you will see the picture
Insert image description here
shown. When the modification is completed, we are done. Click close and reopen VS2022. At this time, there will be a default background. Let’s first take a look at the default small Sister,
Insert image description here
let’s change to a little sister next ^^
Insert image description here
Then we are done (don’t ask the blogger why he didn’t change the little sister, the blogger is a gentleman)

Summarize

After the above, we can have our own beautiful learning room. Thank you all for your patience in reading. If you have any questions, please leave a message in the comment area.) Everyone is asked to
code together with the lady, and the blogger is not paid for it. The third company?

Guess you like

Origin blog.csdn.net/m0_65038072/article/details/127059106