cnctnote.rc
来自「WinCE编程第三版收录的所有源代码(非常适合学习时」· RC 代码 · 共 25 行
RC
25 行
//====================================================================
// Resource file
//
// Written for the book Programming Windows CE
// Copyright (C) 2003 Douglas Boling
//====================================================================
#include "windows.h"
#include "CnctNote.h" // Program-specific stuff
//-----------------------------------------------------------------------
// Icons and bitmaps
//
ID_ICON ICON "cnctNote.ico" // Program icon
//-----------------------------------------------------------------------
CnctNote DIALOG discardable 10, 10, 220, 160
STYLE WS_OVERLAPPED | WS_VISIBLE | WS_CAPTION | WS_SYSMENU |
DS_CENTER | DS_MODALFRAME
CAPTION "CnctNote"
CLASS "CnctNote"
BEGIN
LISTBOX IDC_RPTLIST, 2, 10, 216, 140,
WS_TABSTOP | WS_VSCROLL
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?