powerbar.rc

来自「Windows CE程序设计随书源代码 在学习的过程中」· RC 代码 · 共 33 行

RC
33
字号
//======================================================================
// Resource file
//
// Written for the book Programming Windows CE
// Copyright (C) 2003 Douglas Boling
//======================================================================
#include "windows.h"
#include "aygshell.h"
#include "todaycmn.h"
#include "PowerBar.h"

ID_ICON ICON "PowerBar.ico"
//----------------------------------------------------------------------
// Options dialog box template
//
IDD_TODAY_CUSTOM    DIALOG DISCARDABLE    0, 15, 134, 145
STYLE DS_CONTROL | WS_POPUP | WS_VISIBLE 
CAPTION "Settings"
BEGIN
    LTEXT    "Today : PowerBar Options", 
                       IDC_STATIC_TITLE,    4,   3, 124,  10

    ICON  ID_ICON,                    -1,   3,  20,  10,  10
    LTEXT "PowerBar - Written for the book Programming Windows \
           CE Copyright 2001 Douglas Boling"
                                      -1,  30,  20, 102,  30

    LTEXT "Bar Height",               -1,   3,  60, 124,  10
    AUTORADIOBUTTON "Short",    ID_SHORT,   7,  72, 124,  10
    AUTORADIOBUTTON "Medium",     ID_MED,   7,  84, 124,  10
    AUTORADIOBUTTON "Tall",      ID_TALL,   7,  96, 124,  10
END

⌨️ 快捷键说明

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