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

1 对齐属性

	
	

 

  但是值得注意的是:

 1)valign 不起作用的情况

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

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

//不起作用
            
   
                
                   
                

            

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

            
                
                                   
                 
                
            

2)halign不起作用的原因

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

 

2 半透明窗口

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

1)shadowattached=“false”   置为假

 窗口的一个属性

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

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

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

2)duilib中的颜色

  颜色值为 ARGB A是透明度

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

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

  所以,

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

示例:





    
        
        

            
            
    
                
                
                    

效果:

云信duilib 小知识总结 (对齐、半透明、右键菜单)_第1张图片

   

 

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下

类似



    
        
            
        



        
            

 

你可能感兴趣的:(duilib界面,网易云信开发)