云信duilib 小知识总结 (对齐、半透明、右键菜单)

2023-12-11 04:18

本文主要是介绍云信duilib 小知识总结 (对齐、半透明、右键菜单),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 duilib 快速入门

duilib入门基础一 容器之 BOX、VBOX、HBOX布局及其子控件align排列方式

duilib入门基础二 HBOX容器内 子控件margin定位规则

​​​​​​duilib入门基础三 VBOX容器内 子控件margin定位规则

duilib入门基础四 BOX容器内 子控件margin定位规则

duilib入门基础五 简单示例之 文件选择框使用

duilib入门基础 六 见见世面,duilib 基本控件 Button 能实现的界面一览

duilib入门基础 七 见见世面,duilib 基本控件 复选框 单选框

duilib入门基础 八 见见世面,duilib 基本控件 滑动条

duilib入门基础 九 见见世面,duilib 基本控件 组合框

duilib入门基础 十 见见世面,duilib 基本控件 选项框 OptionBox

云信duilib基本控件示例下载

1 对齐属性

	<Attribute name="halign" default="left" type="STRING" comment="控件的横向位置,如(center),支持left、center、right三种位置"/><Attribute name="valign" default="top" type="STRING" comment="控件的纵向位置,如(center),支持top、center、bottom三种位置"/>

  但是值得注意的是:

 1)valign 不起作用的情况

VBOX 布局是从上而下依次排列的,因此,Vbox下的子控件,如果设置valign属性时,便不起作用。

比如,VBOX 下,设置子控件的valign=center时,是不起作用的

//不起作用<VBox width="stretch" height="stretch"  bkcolor="red"><HBox width="100" height="100"  halign="center"  valign="center"     bkcolor="blue"></HBox></VBox>

如果想让VBOX布局下,子控件也居中,需要辅助控件Control

            <VBox width="stretch" height="stretch"  bkcolor="red"><Control /><HBox width="100" height="100"  halign="center"     bkcolor="blue">                  </HBox><Control /></VBox>

2)halign不起作用的原因

同理,HBOX 中,子控件按水平方向,依次排列,因此,在HBOX中,设置子控件的halign也是不起作用的。

2 半透明窗口

   想实现窗口半透明,控件不透明的效果,使用云信duilib也很方便实现

1)shadowattached=“false”   置为假

<Attribute name="shadowattached" default="true" type="BOOL" comment="窗口是否附加阴影效果,如(true)"/>

 窗口的一个属性

 如果为true时,默认给窗口加上阴影背景

 如果为false, 则不加额外背景

 因为,我们想让窗口半透明,所以需要将此属性设置为false, 不加额外阴影背景

2)duilib中的颜色

<TextColor name="xnw_lightcolor2_trans_50" value="#7f363E4B" />

  颜色值为 ARGB A是透明度

  也就是,dulib本身是支持透明的

  也就是,如果将背景设置为透明色的话,窗口背景就是透明的了。

  所以,

  窗口背景设置为透明色,控件颜色,设置为非透明色,便实现了 窗口透明,控件不透明的效果

示例:

<?xml version="1.0" encoding="UTF-8"?>
<Window caption="0,0,0,0" mininfo="500,500" size="500,500" sizebox="4,4,6,6" shadowattached="false"  roundcorner="10,10" ><VBox bkcolor="xnw_lightcolor2_trans_50" height="stretch" width="stretch"><!-- 客户端名称设置 --><Control /><VBox width="stretch" height="stretch"><Control /><HBox   halign="center" width="auto" halign="center"><Button class="btn_global_green_80x30" name="myClosebtn"  text="我知道了"/></HBox><Control /></VBox><Control /></VBox></Window>

效果:

   

3 右键菜单

1) 右键消息

	if (uMsg==WM_RBUTTONDOWN){int xPos = LOWORD(lParam);INT yPos = HIWORD(lParam);CPoint pt;pt.x = xPos;pt.y = yPos;ClientToScreen(m_hWnd, &pt);PopupUserMenu(pt);return 1;}
PopupUserMenu(POINT point){CMenuWnd* pMenu = new CMenuWnd(NULL);STRINGorID xml(L"liveStream_rbt_menu.xml");pMenu->Init(xml, _T("xml"), point);CMenuElementUI *pFreshNlss = (CMenuElementUI*)pMenu->FindControl(L"fresh");if (pFreshNlss)pFreshNlss->AttachSelect(nbase::Bind(&NLSLiveForm::ReFreshNlss, this, std::placeholders::_1));CMenuElementUI* pVideoImage = (CMenuElementUI*)pMenu->FindControl(L"videoImage");if (pVideoImage){pVideoImage->AttachSelect(nbase::Bind(&NLSLiveForm::ChangeImage, this, std::placeholders::_1));CheckBox* check_image = (CheckBox*)pVideoImage->FindSubControl(L"imageCheckBox");check_image->Selected(m_bVideoImage);}CMenuElementUI *pPull = (CMenuElementUI*)pMenu->FindControl(L"pullAdd");if (pPull){pPull->AttachSelect(nbase::Bind(&NLSLiveForm::CopyPullAdd, this, std::placeholders::_1));}CMenuElementUI *pPush = (CMenuElementUI*)pMenu->FindControl(L"pushAdd");if (pPush){pPush->AttachSelect(nbase::Bind(&NLSLiveForm::CopyPushAdd, this, std::placeholders::_1));}/CMenuElementUI *pStopCapture = (CMenuElementUI*)pMenu->FindControl(L"stopCapture");if (pStopCapture){pStopCapture->AttachSelect(nbase::Bind(&NLSLiveForm::StopCapture, this, std::placeholders::_1));}CMenuElementUI *pStartCapture = (CMenuElementUI*)pMenu->FindControl(L"startCapture");if (pStartCapture){pStartCapture->AttachSelect(nbase::Bind(&NLSLiveForm::StartCapture, this, std::placeholders::_1));}CMenuElementUI *pStartInteractLive = (CMenuElementUI*)pMenu->FindControl(L"intLive");if (pStartInteractLive){pStartInteractLive->AttachSelect(nbase::Bind(&NLSLiveForm::StartIntLive, this, std::placeholders::_1));}CMenuElementUI *pSwitchToInt = (CMenuElementUI*)pMenu->FindControl(L"switchMode");if (pSwitchToInt){if (!g_bSwitchChangeable||!m_bLiving&&!m_bPaused){pSwitchToInt->SetVisible(false);}pSwitchToInt->AttachSelect(nbase::Bind(&NLSLiveForm::SwtichToIntMode, this, std::placeholders::_1));}pMenu->Show();pMenu->SetFocus(NULL);
}

菜单响应函数格式

bool SwtichToIntMode(ui::EventArgs* param);

菜单XML 放在themes\default\menu下

类似

<?xml version="1.0" encoding="utf-8"?>
<Window shadowattached="true" alphafixcorner="10,20,10,10"><VListBox class="menu" name="user_menu"><MenuElement bkcolor="blue" width="140" height="10" alpha="10"><Control bkimage="up.png" width="auto" height="auto" halign="center" valign="bottom" /></MenuElement><MenuElement class="MenuElement" name="switchMode" width="140" height="50"><Button class="menu_text" text="切换成互动模式" halign="center" valign="center" /></MenuElement><MenuElement class="MenuElement" name="startCapture" width="140" height="50"><Button class="menu_text" text="恢复摄像头" halign="center" valign="center" /></MenuElement></VListBox>
</Window>

这篇关于云信duilib 小知识总结 (对齐、半透明、右键菜单)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/479433

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

学习hash总结

2014/1/29/   最近刚开始学hash,名字很陌生,但是hash的思想却很熟悉,以前早就做过此类的题,但是不知道这就是hash思想而已,说白了hash就是一个映射,往往灵活利用数组的下标来实现算法,hash的作用:1、判重;2、统计次数;

禁止平板,iPad长按弹出默认菜单事件

通过监控按下抬起时间差来禁止弹出事件,把以下代码写在要禁止的页面的页面加载事件里面即可     var date;document.addEventListener('touchstart', event => {date = new Date().getTime();});document.addEventListener('touchend', event => {if (new

sqlite3 相关知识

WAL 模式 VS 回滚模式 特性WAL 模式回滚模式(Rollback Journal)定义使用写前日志来记录变更。使用回滚日志来记录事务的所有修改。特点更高的并发性和性能;支持多读者和单写者。支持安全的事务回滚,但并发性较低。性能写入性能更好,尤其是读多写少的场景。写操作会造成较大的性能开销,尤其是在事务开始时。写入流程数据首先写入 WAL 文件,然后才从 WAL 刷新到主数据库。数据在开始

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识

二分最大匹配总结

HDU 2444  黑白染色 ,二分图判定 const int maxn = 208 ;vector<int> g[maxn] ;int n ;bool vis[maxn] ;int match[maxn] ;;int color[maxn] ;int setcolor(int u , int c){color[u] = c ;for(vector<int>::iter

整数Hash散列总结

方法:    step1  :线性探测  step2 散列   当 h(k)位置已经存储有元素的时候,依次探查(h(k)+i) mod S, i=1,2,3…,直到找到空的存储单元为止。其中,S为 数组长度。 HDU 1496   a*x1^2+b*x2^2+c*x3^2+d*x4^2=0 。 x在 [-100,100] 解的个数  const int MaxN = 3000

状态dp总结

zoj 3631  N 个数中选若干数和(只能选一次)<=M 的最大值 const int Max_N = 38 ;int a[1<<16] , b[1<<16] , x[Max_N] , e[Max_N] ;void GetNum(int g[] , int n , int s[] , int &m){ int i , j , t ;m = 0 ;for(i = 0 ;