还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

解决rc中无法设置CComboBox下拉列表框高度的问题

来源:清泛原创     2016-11-11 10:32:10    人气:     我有话说( 0 人参与)

怎么修改CComboBox实例的高度,注意,不是下拉框的!(在rc资源中无法调整高度)m_combo.SetItemHeight(-1,50);IfnIndexis–1,theheig...

怎么修改CComboBox实例的高度,注意,不是下拉框的!(在rc资源中无法调整高度)

m_combo.SetItemHeight(-1, 50);
 
If nIndex is –1, the height of the edit-control or static-text portion of the combo box is to be set. 

int CComboBox::SetItemHeight(
   int nIndex,
   UINT cyItemHeight 
);
nIndex
Specifies whether the height of list items or the height of the edit-control (or static-text) portion of the combo box is set. 

If the combo box has the CBS_OWNERDRAWVARIABLE style, nIndex specifies the zero-based index of the list item whose height is to be set; otherwise, nIndex must be 0 and the height of all list items will be set. 

If nIndex is –1, the height of the edit-control or static-text portion of the combo box is to be set. 

cyItemHeight
Specifies the height, in pixels, of the combo-box component identified by nIndex. 

CComboBox 高度

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: