【C++】获得窗口和控件的句柄


1.获得窗口句柄
	this.GetSafeHwnd();
2.获得控件句柄 
	CEdit m_edit1;
	HWND hd=m_edit1->GetSafeHwnd();


你可能感兴趣的:(【C++】获得窗口和控件的句柄)