如何用combo box控件设置文本中的字体的大小
展开全部
ComboBox.SetFont(...) 函数生成一个你需要的FONT,调用其子函数SetFont
如果想在生成 ComboBox 对象生任一时间修改,可能还需要发出消息让ComboBox重新计算大小类似下面的程序,调用一下// 名称: CJinListCtrl::ForceToMeasureItem
// 说明: 发送一条位置改变消息,重新计算高度
// 返回: void
void CJinListCtrl::ForceToMeasureItem()
{
if( !GetSafeHwnd() )
return; CRect rc;
GetWindowRect(&rc);
WINDOWPOS wp;
wp.hwnd = this->m_hWnd;
wp.cx = rc.Width() ;
wp.cy = rc.Height() ;
wp.flags = SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOZORDER;
SendMessage(WM_WINDOWPOSCHANGED, 0, reinterpret_cast<LPARAM> (&wp));}
如果想在生成 ComboBox 对象生任一时间修改,可能还需要发出消息让ComboBox重新计算大小类似下面的程序,调用一下// 名称: CJinListCtrl::ForceToMeasureItem
// 说明: 发送一条位置改变消息,重新计算高度
// 返回: void
void CJinListCtrl::ForceToMeasureItem()
{
if( !GetSafeHwnd() )
return; CRect rc;
GetWindowRect(&rc);
WINDOWPOS wp;
wp.hwnd = this->m_hWnd;
wp.cx = rc.Width() ;
wp.cy = rc.Height() ;
wp.flags = SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOZORDER;
SendMessage(WM_WINDOWPOSCHANGED, 0, reinterpret_cast<LPARAM> (&wp));}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询