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

📄 uitestcontainer.rssi

📁 Symbian S60 UI training example
💻 RSSI
字号:
/*
========================================================================
 Name        : UiTestContainer.rssi
 Author      : Andreas Jakl
 Copyright   : 2007, Mopius
 Description : 
========================================================================
*/
#include "UiTestContainer.loc"
#include "UiTestContainer.hrh"

RESOURCE AVKON_VIEW r_ui_test_container_ui_test_container_view
	{
	cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
	menubar = r_ui_test_container_options_menu;
	}
RESOURCE MENU_BAR r_ui_test_container_options_menu
	{
	titles=
		{
		MENU_TITLE
			{
			txt="Example Menu"; 
			menu_pane=r_ui_test_container_menu_pane;
			}
		};
	}

RESOURCE MENU_PANE r_ui_test_container_menu_pane 
	{
	items = 
		{
		MENU_ITEM { command = EUiTestCmdShowYourName; txt = STR_ShowYourName; },
		MENU_ITEM { command = EUiTestCmdExit; txt = STR_Exit; }
		};
	}
	
RESOURCE STATUS_PANE_APP_MODEL r_ui_test_container_status_pane
	{
	panes =
		{
		SPANE_PANE
			{
			id = EEikStatusPaneUidTitle;
			type = EAknCtTitlePane;
			resource = r_ui_test_container_title_resource;
			}
		};
	}
RESOURCE TITLE_PANE r_ui_test_container_title_resource
	{
	txt = STR_UiTestContainerView_1;
	}
	
RESOURCE TBUF r_labeltext { buf = STR_ShowYourName; }

RESOURCE DIALOG r_ui_test_name_query
{
	flags = EAknGeneralQueryFlags;
	buttons = R_AVKON_SOFTKEYS_OK_CANCEL;		// Softkeys to be displayed
	items =
	{
		DLG_LINE						// Defines each line of a dialog 

⌨️ 快捷键说明

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