2025-11-27 16:46:48 +09:00

34 lines
653 B
C++

// FolderPicker.cpp: implementation of the CFolderPicker class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "FolderPicker.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CFolderPicker::CFolderPicker()
{
}
CFolderPicker::~CFolderPicker()
{
}
void CFolderPicker::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
{
if(m_pDropDown!=NULL)
{
lpMeasureItemStruct->itemHeight=m_pDropDown->GetItemHeight();
}
else
{
lpMeasureItemStruct->itemHeight=38;
}
}