示例#1
0
void CPatchViewDlg::OnEscape()
{
	if (::IsWindowVisible(m_FindBar))
	{
		OnFindExit();
		return;
	}
	SendMessage(WM_CLOSE);
}
示例#2
0
LRESULT CPatchViewDlg::OnFindExitMessage(WPARAM, LPARAM)
{
	OnFindExit();
	return 0;
}
示例#3
0
void CFindBar::OnCancel()
{
	// hide the find bar on escape
	OnFindExit();
}