默认 Visual Studio 2010 和 2008 字体

发布于 2024-09-13 21:28:01 字数 52 浏览 1 评论 0原文

Visual Studio 2010 和 2008 编辑器中的默认字体(及其大小)是什么?

What is the default font (and its size) in the Visual Studio 2010 and 2008 editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

最佳男配角 2024-09-20 21:28:01

在 Visual Studio 2008 中,默认字体为 Courier New(大小 10),但在 Visual Studio 2010 中,默认字体为 Consolas(大小 10)。

In Visual Studio 2008 the default font is Courier New (size 10) but in Visual Studio 2010 the default font is Consolas (size 10).

怎言笑 2024-09-20 21:28:01

您可以在“工具”->“工具”中查看它的设置。选项->环境->字体和颜色。

我的 Visual Studio 2010 设置为 Consolas 10 作为默认文本编辑器设置。

You can see what it's set to in Tools -> Options -> Environment -> Fonts and Colors.

My Visual Studio 2010 is set to Consolas 10 as the default Text Editor setting.

痴梦一场 2024-09-20 21:28:01

默认字体还取决于 Visual Studio 的语言版本以及操作系统或系统区域设置的语言。例如,日语 Windows 上的英语 VS 2008 默认为 MS Gothic。

The default font also depends on the language version of Visual Studio and the language of the operating system or the system locale. For example English VS 2008 on Japanese Windows defaults to MS Gothic.

淡忘如思 2024-09-20 21:28:01

在 VS2012 中,它也可以是 Segoe UI 大小 10。

In VS2012 it can be Segoe UI size 10 also.

甜心 2024-09-20 21:28:01

这是适合我的 Visual Studio 的 Consolas 尺寸 10!

C++

#include <iostream>
#include "Conio.h"
using namespace std;

void main(){
int num1;
cout << "What's your favourite number:   ";
cin >> num1;
cout << endl;
cout << "Cool!" << num1 << " is my favourite number too!" << endl;
_getch();

}

It's Consolas Size 10 For My Visual Studio!

C++

#include <iostream>
#include "Conio.h"
using namespace std;

void main(){
int num1;
cout << "What's your favourite number:   ";
cin >> num1;
cout << endl;
cout << "Cool!" << num1 << " is my favourite number too!" << endl;
_getch();

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文