simpleex.rss

来自「symbian下的几个小例子。。很值得学习」· RSS 代码 · 共 54 行

RSS
54
字号
// simpleEx.rss
//
// Copyright (c) Symbian Software Ltd 1999 - 2007.  All rights reserved.
//
/*=====================================
   60 SimpleEx Resource File
=====================================*/

NAME SIMP

#include <eikon.rh>
#include <avkon.rh>
#include <avkon.rsg>

#include "SimpleEx.hrh"

RESOURCE RSS_SIGNATURE
    {
    }

RESOURCE TBUF r_default_document_name
    {
    buf="";
    }

RESOURCE EIK_APP_INFO
    {
    menubar = r_SimpleEx_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }

RESOURCE MENU_BAR r_SimpleEx_menubar
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_SimpleEx_menu;
            }
        };
    }

RESOURCE MENU_PANE r_SimpleEx_menu
    {
    items = 
        {
        MENU_ITEM
            {
            command = ESimpleExCommand;
            txt = "Start";
            }
        };
    }

⌨️ 快捷键说明

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