#include "../dge/dge.h"
#ifdef _DEBUG
#pragma comment( lib, "../bin/dge_d.lib")
#else
#pragma comment( lib, "../bin/dge.lib" )
#endif
#include "resource.h"
UIListCtrl *g_pList = NULL;
UITree *g_pTree = NULL;
UIWindow *g_pDlg = NULL;
ImageList *g_pImgList = NULL;
void OnMenuCmd( EventArgs &e )
{
LPCTSTR strCmd = _T( "关闭" );
LPCTSTR strNew = _T( "普通" );
LPCTSTR strDlg = _T( "对话框" );
if( _tcsncmp( e.pSender->GetText(), strCmd, _tcslen( strCmd ) ) == 0 )
PostQuitMessage( 0 );
else if( _tcsncmp( e.pSender->GetText(), strNew, _tcslen( strNew ) ) == 0 )
{
g_pDlg = UIManager::GetInstance()->CreateWidget( _T( "dlgNewTile.xml" ) );
if( g_pDlg != NULL )
{
// g_pDlg->ShowModal();
UIManager::GetInstance()->ShowWidget( g_pDlg );
}
}
else if( _tcsncmp( e.pSender->GetText(), strDlg, _tcslen( strDlg ) ) == 0 )
{
UIWindow *pDlg = UIManager::GetInstance()->CreateWidget( _T( "dlgNewTile.xml" ) );
if( pDlg != NULL )
{
pDlg->ShowModal();
}
}
else
{
// DBG_MSG( _T( "Menu %s Clicked." ), e.pSender->GetText() );
}
}
void OnInitialize( EventArgs &e )
{
UIWindow *pWnd = static_cast< UIWindow * >( e.pSender );
g_pTree = static_cast< UITree * >( pWnd->GetChildByName( _T( "treeTest" ) ) );
UITreeItem *pRoot = g_pTree->InsertItem( _T( "Root" ), NULL, 1 );
UITreeItem *pRoot2 = NULL;
UITreeItem *pRoot3 = NULL;
TCHAR szItem[ 120 ] = { 0 };
for( int i = 0; i < 30; i ++ )
{
_stprintf_s( szItem, 120, _T( "Item %d" ), i + 1 );
pRoot2 = g_pTree->InsertItem( szItem, pRoot, 1 );
if( i % 5 == 0 )
{
for( int c = 0; c < 3; c ++ )
{
_stprintf_s( szItem, 120, _T( "A Long Long Long Text Long Child %d" ), c + 1 );
pRoot3 = g_pTree->InsertItem( szItem, pRoot2, 2 );
}
}
}
}
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
UIWindow *pWnd = DXEnginee::GetInstance()->Initialize( hInstance, _T( "rpgbuilder.xml" ), 32 );
if( pWnd != NULL )
{
ATTACH_HANDLER_G( pWnd, UE_T_SIMPLECMD, OnMenuCmd );
ATTACH_HANDLER_G( pWnd, UE_T_INITIALIZE, OnInitialize );
return DXEnginee::GetInstance()->Run();
}
else
return 0;
}
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
纯 VC和DirectX 实现的界面库,实现了窗口,对话框管理,实现了菜单,工具条,树形控件,以及常用的大多数控件。布局使用了xml, 引擎中包含有自行编写的xml解析类。dge.dll 为当前正在工作的项目,暂不开源,仅供演示。 感兴趣的朋友请加Q644715889联系,谢谢!今后将陆续上传其他演示程序。
资源推荐
资源详情
资源评论
收起资源包目录
demo.rar (19个子文件)
bin
maxbtn.png 22KB
rpgbuilder.xml 2KB
minbtn.png 23KB
dge.dll 439KB
dge.log 176B
toolbar.png 60KB
closebtn.png 23KB
dlgNewTile.xml 430B
rpgbuilder.exe 57KB
代码
small.ico 23KB
Resource.h 943B
res
toolbarT.png 49KB
rpgbuilder.vcproj 4KB
stdafx.h 415B
targetver.h 1KB
rpgbuilder.rc 5KB
rpgbuilder.ico 23KB
rpgbuilder.h 39B
rpgbuilder.cpp 2KB
共 19 条
- 1
资源评论
APei
- 粉丝: 79
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- jdbc-stdext-2.0.zip
- 中国县域统计年鉴数据,2000-2021年
- LCD12864display.zip
- 智能GPT图书管理系统,全局异常拦截器,登录校验拦截器,Echarts展示借阅量,可添加爬虫功能获取图书数据
- 基于树莓派+YOLOV5的识别模型实现四驱智能小车+项目源码+文档说明+数据集+模型
- 震撼市场潜力:预计2024年创新药市场规模将达到7534亿元,引领医药产业新变革
- chromedriver-132.0.6833.0-win64.zip
- 小六壬速断软件,根据农历月日时辰起卦,得三宫,算事业、算婚姻感情、算失物方位
- 微信小程序入门全流程解析-注册到发布实战指南
- winform,左侧工具栏,右上显示代码,下方显示曲线,曲线可以拖拽移动位置
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功