下载
编译
编出
Dll
:
DuiLib.dll
DuiLib_d.dll
引入
复制一份
StdAfx.h
到工程目录下,添加如下内容。
下述是根据工程的相对路径,可根据实际的工程布局结构对应修改。
1 2 3 4 5 6 7 8 9 |
#include "../../DuiLib_Ultimate/DuiLib/UIlib.h" using namespace DuiLib; #ifndef _DEBUG #pragma comment(lib,"..\\libs\\Duilib.lib") #else #pragma comment(lib,"..\\libs\\Duilib_d.lib") #endif |
工程
入口
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#include "../include/CMainWnd.h" int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { UNREFERENCED_PARAMETER(hPrevInstance); UNREFERENCED_PARAMETER(lpCmdLine); //程序实例 CPaintManagerUI::SetInstance(hInstance); // ////配置资源路径 ////资源类型 CPaintManagerUI::SetResourceType(UILIB_FILE); //资源路径 CDuiString sResourcePath; sResourcePath.Format(_T("%sSkin"), CPaintManagerUI::GetInstancePath()); CPaintManagerUI::SetResourcePath(sResourcePath); CMainWnd* pMainWnd = new CMainWnd(); pMainWnd->Create(NULL, _T("aet"), WS_POPUP | WS_VISIBLE, 0); pMainWnd->CenterWindow(); //启动消息循环 CPaintManagerUI::MessageLoop(); return (int)0; } |
窗口类
CMainWnd.h
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#pragma once #include "../include/StdAfx.h" class CMainWnd : public WindowImplBase { public: CMainWnd(void); virtual ~CMainWnd(void); public: virtual CDuiString GetSkinFile(); virtual LPCTSTR GetWindowClassName(void) const; void Notify(TNotifyUI& msg); }; |
CMainWnd.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
#include "../include/CMainWnd.h" CMainWnd::CMainWnd(void) { } CMainWnd::~CMainWnd(void) { } CDuiString CMainWnd::GetSkinFile() { return _T("main.xml"); } LPCTSTR CMainWnd::GetWindowClassName(void) const { return _T("MainWnd"); } void CMainWnd::Notify(TNotifyUI& msg) { // 消息类型 if (msg.sType == _T("click")) { // 控件名称 CDuiString sName = msg.pSender->GetName(); if (sName == _T("closebtn")) { Close(IDOK); PostQuitMessage(0); return; } } WindowImplBase::Notify(msg); } |
XML
放在
Debug
目录下的skin
文件夹里面。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?xml version="1.0" encoding="utf-8"?> <Window size="633,420" sizebox="4,4,6,6" roundcorner="0,0" caption="0,0,0,30" bktrans="false" mininfo="105,70" showshadow="true" shadowimage="imgs/main/shadow.png" shadowsize="6" shadowcorner="8,8,8,8" bkcolor2="#FFFFFFFF" bkcolor="#FFFFFFFF"> <Font id="0" size="12" default="true" share="true"/> <Font id="1" size="13" bold="true"/> <VerticalLayout name="root" bkcolor="#FF232323"> <VerticalLayout name="body"> <HorizontalLayout padding="12,0,0,0" name="title_bar" height="30" > <Label name="title" width="300" font="1" text="aet" textcolor="#FFC4C4C4"/> </HorizontalLayout> <HorizontalLayout padding="0,0,0,0" name="title_bar" height="1" bkcolor="#FF373737"/> </VerticalLayout> <HorizontalLayout float="0,0,1,0" inset="0,6,0,0" height="30"> <HorizontalLayout /> <Button padding="12,0,0,0" name="minbtn" width="20" height="20" tooltip="最小化" normalimage="sysbtn_mini_normal" hotimage="sysbtn_mini_hot" pushedimage="sysbtn_mini_pushed"/> <Button padding="12,0,0,0" name="maxbtn" width="20" height="20" tooltip="最大化" normalimage="sysbtn_max_normal" hotimage="sysbtn_max_hot" pushedimage="sysbtn_max_pushed"/> <Button padding="12,0,0,0" name="restorebtn" width="20" height="20" tooltip="还原" visible="false" normalimage="sysbtn_restore_normal" hotimage="sysbtn_restore_hot" pushedimage="sysbtn_restore_pushed"/> <Button padding="12,0,0,0" name="closebtn" width="20" height="20" tooltip="关闭" normalimage="sysbtn_close_normal" hotimage="sysbtn_close_hot" pushedimage="sysbtn_close_pushed"/> <HorizontalLayout width="12"/> </HorizontalLayout> </VerticalLayout> </Window> |
结构
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
│ CMakeLists.txt │ aet_test.sln │ Readme.md │ result.txt │ ├─conf ├─Debug │ │ aet_ac.exe │ │ aet_ac.ilk │ │ aet_ac.pdb │ │ DuiLib_d.dll │ │ DuiLib_d.lib │ │ │ └─skin │ │ main.xml │ │ │ └─imgs │ │ reduction.png │ │ │ ├─main │ │ shadow.png │ │ │ └─sysbtn │ close.png │ maximization.png │ minimize.png │ restore.png │ ├─aet_ac │ │ aet_ac.vcxproj │ │ aet_ac.vcxproj.filters │ │ aet_ac.vcxproj.user │ │ │ ├─include │ │ CMainWnd.h │ │ StdAfx.h │ │ │ └─src │ CMainWnd.cpp │ dk_acc.cpp │ ├─DuiLib_Ultimate │ │ DuiLib.sln │ │ LICENSE │ │ README.md │ │ │ ├─3rd │ │ │ ├─Bin │ │ │ ├─DuiLib │ │ │ DuiLib.vcxproj │ │ │ DuiLib.vcxproj.filters │ │ │ DuiLib.vcxproj.user │ │ │ StdAfx.cpp │ │ │ StdAfx.h │ │ │ UILib.cpp │ │ │ UIlib.h │ │ │ │ │ ├─Control │ │ │ │ │ ├─Core │ │ │ │ │ ├─Layout │ │ │ │ │ └─Utils │ │ │ ├─Help │ │ │ ├─Lib │ │ │ └─Temp │ ├─libs │ DuiLib.dll │ DuiLib.lib │ DuiLibA.dll │ DuiLibA.lib │ DuiLibA_d.dll │ DuiLibA_d.lib │ DuiLib_d.dll │ DuiLib_d.lib │ ├─log │ ├─temp │ └─aet_ac └─third |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Duilib_自定义窗口06/11
- ♥ Electron04/03
- ♥ Shell学习总结一08/07
- ♥ 计算机系统概论(LC-3) 一06/22
- ♥ Linux 进程描述&&相关介绍03/28
- ♥ Linux 线程等待&&取消&&终止03/31