⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 langload.rc

📁 在windows的资源文件中使用多语言从而实现多语言支持
💻 RC
字号:
// sample showing how to use language IDs and LoadString
//
// (C) Copyright 1999 by Mike Blaszczak
// written on 18 October, 1999 for Visual C++ 6.0

#include "winres.h"
#include "langload.h"

// one string table for LANG_ENGLISH

LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

STRINGTABLE DISCARDABLE 
BEGIN
    IDS_COWS    "Laughing cows are pretty."
END

// the other string table for LANG_FRENCH
// note they have the same string ID; that's fine, since 
// each instance is in a different LANGUAGE

LANGUAGE LANG_FRENCH, SUBLANG_FRENCH

STRINGTABLE DISCARDABLE 
BEGIN
    IDS_COWS    "Les vaches qelle rit ont jolie!"
END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -